<dependencies>
1. SpringMVC 相关依赖 (自动包含了 Spring 生态依赖)
- spring-webmvc: 5.2.2
2. 参数校验依赖
- hibernate-validator:6.0.18
3. RequestBody 支持 jackson 的相关依赖
- jackson-databind:2.10.1
- jackson-datatype-jdk8:2.10.1
- jackson-datatype-jsr310
- jackson-module-parameter-names:2.10.1
4. Spring AOP 切面依赖 (包含 aspectjware、spring jdbc、spring-tx事务)
- spring-aspects: 5.3.7
5. Spring 的缓存、定时任务依赖
- spring-context-support:5.2.2
6. Spring 的单元测试依赖
- srping-test:5.2.2
7. MyBatis 相关依赖
- mybatis-spring:1.3.1
- mybatis:3.4.5
8. 数据库连接池依赖
- hikaricp:3.4.1
9. 数据库驱动依赖
- mysql-connect-java:5.1.49
10. 日志依赖 (自动包含了 slf4j)
- logback-classic:1.2.3
11. Tomcat 提供的依赖
- servlet-api:4.0.0
- jsp-api:2.3.0 (可以不引入,在自定义 jsp 标签时需要引入)
12. jstl 依赖
- jstl:1.2
13. lombok 简化 pojo 类书写依赖
- lombok:1.18.10
14. mapstruct 依赖 (可以不引入)
- mapstruct:1.3.1
- mapstruct-processor:1.3.1
15. 单元测试
- junit: 4.12
</dependencies>
- /src/main/webapp/WEB-INF/web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee"
version="4.0">
<!--1. 配置加载 Spring-->
<!--定义一个 Listener,加载 Spring 配置文件-->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!--
默认是从 /WEB-INF/applicationContext.xml 来加载 Spirng 配置文件
这里将 Spring 配置文件置换到 /src/main/resources/spring.xml
-->
<context-param>
<param-name>contextConfigLocation</param-name>
<!--
此处 classpath: 是指从类路径下面找配置文件
classpath*: 则是指除了本应用类路径之外,还包括 jar 包里边的类路径
-->
<param-value>classpath:spring</param-value>
</context-param>
<!--2. 配置字符集编码过滤器-->
<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>
<init-param>
<param-name>forceEncoding</param-name>
<param-value>true</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>characterEncodingFilter</filter-name>
</url-pattern>/*</url-pattern>
</filter-mapping>
<!--3. 配置加载 SpringMVC-->
<!--定义一个 Servlet,加载 SpringMVC 的核心 Servlet-->
<servlet>
<servlet-name>dispatcherServlet</servlet>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<!--
默认是从 /WEB-INF/xxxxx-servlet.xml 来加载 Spirng 配置文件,
其中 SpringMVC 的默认配置文件名以 -servlet.xml 结尾,xxxxx 为此处定义 DispatcherServlet 的 servlet-name 值
例如,本项目中为 dispatcherServlet,那么默认时的配置文件名为 dispatcherServlet-servlet.xml,
这里配置时,将 SpringMVC 配置文件置换为 /src/main/resources/springmvc-servlet.xml
-->
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:springmvc-servlet.xml</param-value>
</init-param>
<!--配置容器启动时就实例化这个 Servlet-->
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>dispatcherServlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
- /src/main/resources/spring.xml
<?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">
<!--1. 配置 Spring 扫描根目录,排除掉 Contoller-->
<context:component-scan base-package="com.wangchonghaha.student">
<context:exclude-filter type="annotation" expression="org.spingframework.stereotype.Controller" />
</context:component-scan>
<!--2. 配置数据库-->
<!--加载自定义配置到 Spring 配置文件环境中,加载之后就可以使用其中的 properties 变量了-->
<context:proterty-placeholder location="classpath:application.xml" />
<!--配置数据源,引用上边引入的 properties 变量-->
<bean id="hikariDataSource" class="com.zaxxer.hikari.HikariDataSource" destroy-method="close">
<property name="driverClassName" value="${db.driverClassName}" />
<property name="jdbcUrl" value="${db.url}" />
<property name="username" value="${db.userName}" />
<property name="password" value="${db.pwd}" />
<property name="connectionTimeout" value="${db.connectionTimeout}" />
<property name="minimumIdle" value="${db.minimumIdle}" />
<property name="maximumPoolSize" value="${db.maximumPoolSize}" />
<property name="idleTimeout" value="${db.idleTimeout}" />
<property name="maxLifetime" value="${db.maxLifetime}" />
</bean>
<!--3. 配置 MyBatis-->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="dataSource" ref="hikariDataSource" />
<property name="mapperLocations" value="classpath:mybatis/mapper/*.xml" />
<property name="configLocation" value="classpath:mybatis/mybatis-config.xml" />
</bean>
<bean class="org.mybatis.spring.mapper.MapperScannerConfiaurer">
<peoperty name="basePackage" value="com.wangchonghaha.student.mapper" />
<!--这里用于多个数据源的配置,如果有多个数据源时可以通过如下属性进行指定,我们项目只有一个数据源,可以不配置该项-->
<property name="sqlSessionFactoryBeanName" value="sqlSessionFactory" />
</bean>
<!--4. 配置事务-->
<bean id="txManger" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<property name="dataSource" ref="hikariDataSource" />
</bean>
<!--配置事务通知: 配置要做什么事情、拦截后要执行的规则-->
<tx:advice transaction-manage="txManger" id="txAdvice">
<tx:attributes>
<tx:method name="*" propagation="REQUIRED" isolation="DEFAULT" />
<tx:method name="get*" read-only="true" />
<tx:method name="select*" read-only="true" />
<tx:method name="find*" read-only="true" />
<tx:method name="query*" read-only="true" />
<tx:method name="list*" read-only="true" />
</tx:attributes>
</tx:advice>
<!--5. 配置 AOP-->
<aop:config>
<!--配置切入点:txAdvice 将来要对谁(切面)起作用-->
<aop:pointcut id="txPc" expression="execution(* com.wangchonghaha.student.service..*Service.*(..))" />
<!--配置增强器 advisor:有两部分组成,advice + pointcut-->
<aop:advisor advice-ref="txAdvice" point-ref="txPc" />
</aop:config>
<!--6. 配置 Spring 生成代理的方式,默认是 jdk-->
<aop:aspectj-autoproxy proxy-target-class="true" />
</beans>
- /src/main/resources/springmvc.xml
<?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/mvc"
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/mvc
http://www.springframework.org/schema/mvc/spring-mvc.xsd">
<!--1. 配置 Spring MVC 扫描根目录,只处理 Contoller-->
<context:component-scan base-package="com.wangchonghaha.student.handler" use-default-filters="false">
<context:include-filter type="annoation" expression="org.springframework.stereotype.Controller" />
</context:component-scan>
<!--2. 开启注解驱动-->
<!--作用:注册 RequestMappingHandlerMapping、RequestMappingHandlerAdapter 等重要组件-->
<!--参考源码:class AnnotationDrivenBeanDefinitionParser implements BeanDefinitionParser-->
<mvc:annotation-driven />
<!--3. 配置处理静态资源-->
<!--方式一:推荐,开启默认 servlet 处理器-->
<!--Spring MVC 处理不了的请求会进一步转交给默认的 Servlet 处理器进行处理-->
<!--如果请求在服务器上能够找到对应资源(静态资源),则直接返回该资源,如果找不到,则直接报 404-->
<mvc:default-servlet-handler />
<!--
方式二:
location: webapp 下的路径
mapping: 在请求中的访问路径
cache-period="0": 静态资源不缓存
<mvc:resources location="/static/" mapping="/static/**" cache-period="0" />
-->
<!--4. 配置 JSP 视图解析器-->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="viewClass" value="org.springframework.web.servlet.view.JstlView" />
<property name="prefix" value="/WEB-INF/views/" />
<property name="suffix" value=".jsp" />
</bean>
<!--5. 文件上传-->
<!--6. 拦截器-->
</beans>
- /src/main/resources/application.properties
db.driverClassName=com.mysql.jdbc.Driver
db.url=jdbc:mysql://localhost:3306/testdb
db.userName=root
db.pwd=abc123
db.connectionTimeout=30000
db.minimumIdle=5
db.maximumPoolSize=10
db.idleTimeout=600000
db.maxLifetime=1800000
- /src/main/resources/mybatis-config.xml
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
<settings>
<!--下划线转驼峰-->
<setting name="mapUnderscoreToCamelCase" value="true" />
<setting name="logImpl" value="SLF4J" />
<!--列值为 null 时是否调用 bean 的 set 放法与 map 的 put 方法-->
<setting name="callSettersOnNulls" value="true" />
</settings>
<typeAliases>
<package name="org.wangchonghaha.student.bean" />
</typeAliases>
</configuration>
- /src/main/resources/logback.xml
<?xml version="1.0" encodeing="UTF-8"?>
<configuration scan="false">
<property name="LOG_HOME" value="${user.home}/ssm-student" />
<property name="appName" value="app" />
<appender name="stdout" class="ch.qos.logback.core.ConsoleAppender">
<encoder>
<pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] %-5level %logger{50} %line: %msg%</pattern>
<charset>UTF-8</charset>
</encoder>
</appender>
<logger name="com.wangchonghaha.student.mapper" level="debug" additivity="false">
<appender-ref ref="stdout" />
</logger>
<root level="info">
<appender-ref ref="stdout" />
</root>
</configuration>