当前位置 : 主页 > 网络编程 > 其它编程 >

SSM三大框架整合配置(1)SpringMVC

来源:互联网 收集:自由互联 发布时间:2023-07-02
SSM整合指的是SpringMvc、Spring、Mybatis三大框架在项目中的具体应用其中的配置也是多种多样的由于本人技术有限这     SSM整合指的是SpringMvc、Spring、Mybatis三大框架在项目中的具体应用其
SSM整合指的是SpringMvc、Spring、Mybatis三大框架在项目中的具体应用其中的配置也是多种多样的由于本人技术有限这

    SSM整合指的是SpringMvc、Spring、Mybatis三大框架在项目中的具体应用其中的配置也是多种多样的由于本人技术有限这里只进行一种配置方式的列举

    《此配置仅适用于集中式开发分布式开发请在评论区留言我在评论区加以补充》

一、pom.xml文件中的配置

    《1》jsp页面的管理

javax.servletjavax.servlet-api3.1.0javax.servlet.jspjavax.servlet.jsp-api2.3.1javax.servletjstl1.2    《2》servlet→jsp页面数据的解析包主要是json数据  

com.fasterxml.jackson.corejackson-core2.9.1com.fasterxml.jackson.corejackson-databind2.9.1com.fasterxml.jackson.corejackson-annotations2.9.1com.alibabafastjson1.2.36    《3》日志管理的jar包log for java

org.apache.logging.log4jlog4j-api2.9.0org.apache.logging.log4jlog4j-core2.9.0org.apache.logging.log4jlog4j-jcl2.9.0org.slf4jslf4j-nop1.7.25    《4》Spring框架依赖的jar包,对于这个部分内容,涂哥的资料写的详细清晰,堪称完美,这里标明地址   :   https://www.cnblogs.com/BensonHe/p/3903050.html

org.springframeworkspring-context4.3.10.RELEASEorg.springframeworkspring-aop4.3.10.RELEASEorg.springframeworkspring-core4.3.10.RELEASEorg.springframeworkspring-beans4.3.10.RELEASEorg.springframeworkspring-jdbc4.3.10.RELEASEorg.springframeworkspring-tx4.3.10.RELEASEorg.springframeworkspring-web4.3.10.RELEASEorg.springframeworkspring-webmvc4.3.10.RELEASEorg.springframeworkspring-oxm4.3.10.RELEASE

二、web.xml文件中的配置--这个文件是Spring程序的入口拦截请求到applicationContext.xml文件

encodingFilterorg.springframework.web.filter.CharacterEncodingFilterencodingUTF-8encodingFilter/*springDispatcherServletorg.springframework.web.servlet.DispatcherServletcontextConfigLocationclasspath:applicationContext.xml1springDispatcherServlet/springDispatcherServlet/indexindex

三、applicationContext.xml文件中的配置

四、applicationContext-spring-mvc.xml文件中的配置

   

【感谢龙石为本站提供api接口平台 http://www.longshidata.com/pages/apigateway.html】
上一篇:Pureftp+mysql环境配置
下一篇:没有了
网友评论