下面小編就為大家帶來一篇基於javaWeb 專案SSM配置要點及可能遇到的問題和解決方法。小編覺得蠻不錯的,現在就分享給大家,也給大家做個參考。一起跟著小編過來看看吧
我發現網路上許多講解javaweb 專案SSM(Spring,SpringMVC,Mybatis)配置的時候有些重點沒有提到,一下我會貼上一些重要的配置和可能出現問題的地方,適合初學者藉鏡
1. 新javaweb專案是可以在新建的時候就選擇相關依賴函式庫,也可以用maven導入。
2.在從外部導入依賴庫的時候記得要在war 中也導入,否則在伺服器上就會找不到相關的依賴庫,打包就會失敗。
3. 在web.xml 中設定
<!--1、启动Spring的容器 --> <!-- needed for ContextLoaderListener --> <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:applicationContext.xml</param-value> </context-param> <!-- springMVC核心配置 --> <!-- Bootstraps the root web application context before servlet initialization --> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener> <servlet> <servlet-name>dispatcher</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <load-on-startup>1</load-on-startup> </servlet> <servlet-mapping> <servlet-name>dispatcher</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping>
4. 在applicationContext中掃描controller後就可以簡單的存取到Controller中的介面了
後面會繼續跟進myBatis對資料庫想相關配置
以上是JavaWeb專案SSM設定要點及可問題的解決方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!