Maven porn.xml配置#
略
Spring配置文件applicationContext.xml#
1 约束#
Copy
| <?xml version="1.0" encoding="UTF-8"?> |
| <beans xmlns="http://www.springframework.org/schema/beans" |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| xmlns:context="http://www.springframework.org/schema/context" |
| xmlns:aop="http://www.springframework.org/schema/aop" |
| xmlns:tx="http://www.springframework.org/schema/tx" |
| xsi:schemaLocation="http://www.springframework.org/schema/beans |
| http://www.springframework.org/schema/beans/spring-beans.xsd |
| http://www.springframework.org/schema/context |
| http://www.springframework.org/schema/context/spring-context.xsd |
| http://www.springframework.org/schema/aop |
| http://www.springframework.org/schema/aop/spring-aop.xsd |
| http://www.springframework.org/schema/tx |
| http://www.springframework.org/schema/tx/spring-tx.xsd"> |
| |
| </beans> |
2 开启注解扫描#
Copy
| |
| <context:component-scan base-package="com.zen.service"/> |
| <context:component-scan base-package="com.zen.dao"/> |
3 Spring与Mybatis整合#
1 创建db.properties文件#
Copy
| jdbc.driver=com.mysql.jdbc.Driver |
| jdbc.url=jdbc:mysql://localhost:3306/ssm?useUnicode=true&characterEncoding=utf8 |
| jdbc.username=root |
| jdbc.password=root |
2 Spring接管mybatis的Session工厂#
Copy
| <context:property-placeholder location="classpath:db.properties"/> |
| |
| |
| <bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource"> |
| <property name="driverClass" value="${jdbc.driver}" /> |
| <property name="jdbcUrl" value="${jdbc.url}" /> |
| <property name="user" value="${jdbc.username}" /> |
| <property name="password" value="${jdbc.password}" /> |
| </bean> |
| |
| |
| <bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"> |
| |
| <property name="dataSource" ref="dataSource" /> |
| </bean> |
3 配置自动扫描所有 Mapper 接口和文件#
Copy
| |
| <bean id="mapperScanner" class="org.mybatis.spring.mapper.MapperScannerConfigurer"> |
| <property name="basePackage" value="com.zen.dao"/> |
| </bean> |
4 配置Spring事务#
Copy
| |
| <bean id="transactionManager" |
| class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> |
| <property name="dataSource" ref="dataSource"/> |
| </bean> |
| |
| |
| <tx:annotation-driven transaction-manager="transactionManager"/> |
web.xml配置Spring MVC核心控制器#
1 约束#
Copy
| <?xml version="1.0" encoding="UTF-8"?> |
| <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| xmlns="http://xmlns.jcp.org/xml/ns/javaee" |
| xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" |
| version="3.1"> |
| </web-app> |
2 配置核心控制器#
Copy
| <servlet> |
| <servlet-name>dispatcherServlet</servlet-name> |
| <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> |
| |
| <init-param> |
| <param-name>contextConfigLocation</param-name> |
| <param-value>classpath:springmvc.xml</param-value> |
| </init-param> |
| |
| <load-on-startup>1</load-on-startup> |
| </servlet> |
| <servlet-mapping> |
| <servlet-name>dispatcherServlet</servlet-name> |
| <url-pattern>/</url-pattern> |
| </servlet-mapping> |
3 配置编码过滤器#
Copy
| |
| <filter> |
| <filter-name>characterEncodingFilter</filter-name> |
| <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class> |
| <init-param> |
| <param-name>encoding</param-name> |
| <param-value>UTF-8</param-value> |
| </init-param> |
| </filter> |
| <filter-mapping> |
| <filter-name>characterEncodingFilter</filter-name> |
| <url-pattern>/*</url-pattern> |
| </filter-mapping> |
Spring MVC配置文件springmvc.xml#
1 约束#
Copy
| <?xml version="1.0" encoding="UTF-8"?> |
| <beans xmlns="http://www.springframework.org/schema/beans" |
| xmlns:mvc="http://www.springframework.org/schema/mvc" |
| xmlns:context="http://www.springframework.org/schema/context" |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| xsi:schemaLocation=" |
| http://www.springframework.org/schema/beans |
| http://www.springframework.org/schema/beans/spring-beans.xsd |
| http://www.springframework.org/schema/mvc |
| http://www.springframework.org/schema/mvc/spring-mvc.xsd |
| http://www.springframework.org/schema/context |
| http://www.springframework.org/schema/context/spring-context.xsd"> |
| </beans> |
2 Spring与Spring MVC整合#
Copy
| |
| <context-param> |
| <param-name>contextConfigLocation</param-name> |
| <param-value>classpath:applicationContext.xml</param-value> |
| </context-param> |
| |
| <listener> |
| <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> |
| </listener> |
3 配置核心控制器#
Copy
| |
| <context:component-scan base-package="com.zen"> |
| <context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/> |
| </context:component-scan> |
| |
| |
| <bean id="internalResourceViewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"> |
| |
| <property name="prefix" value="/WEB-INF/pages/"/> |
| |
| <property name="suffix" value=".jsp"/> |
| </bean> |
| |
| |
| <mvc:resources location="/css/" mapping="/css/**" /> |
| <mvc:resources location="/img/" mapping="/img/**" /> |
| <mvc:resources location="/js/" mapping="/js/**" /> |
| <mvc:resources location="/plugins/" mapping="/plugins/**" /> |
| |
| |
| <mvc:annotation-driven / |
| |
【推荐】还在用 ECharts 开发大屏?试试这款永久免费的开源 BI 工具!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 继承的思维:从思维模式到架构设计的深度解析
· 如何在 .NET 中 使用 ANTLR4
· 后端思维之高并发处理方案
· 理解Rust引用及其生命周期标识(下)
· 从二进制到误差:逐行拆解C语言浮点运算中的4008175468544之谜
· 35岁程序员的中年求职记:四次碰壁后的深度反思
· 当职场成战场:降职、阴谋与一场硬碰硬的抗争
· 用99元买的服务器搭一套CI/CD系统
· Excel百万数据如何快速导入?
· ShadowSql之.net sql拼写神器