目录规范
- java:存放 Java 代码
- resources:存放资源文件,例如 Spring、Mybatis、Log 的配置文件等
- mapper:存放 dao 中每个方法对应的 sql,在这里配置就无需写 impl 实现类
- spring:存放 Spring 的相关配置文件,有 dao、service、web 三个包
- sql:存放数据库文件
- webapp:存放前端的静态资源(如果是非前后端分离项目)
- resources:前端项目的静态资源(例如图片资源等)
- WEB-INF:外部浏览器无法访问,只有内部才可以访问。web.xml 以及 jsp 文件放置在这里
- test:测试文件
具体包名
- dao:是数据访问层(接口),包括数据库操作、文件读写操作、以及 Redis 缓存操作等。
- entity:将封装 dao 层取出来的数据作为一个对象,一般用作在 dao 层和 service 层之间传递
- dto:数据传输层,dto 有时候也叫 vo
- service:业务逻辑层,用来设计业务接口
- impl:业务逻辑实现层,用来实现业务接口
- web:控制器层,或者叫 controller 包
配置文件
先在 Spring 文件夹中新建 spring-dao.xml
文件。
- 读取数据库连接相关参数
- 配置数据连接池
- 配置连接属性
- 配置 SqlSessionFactory 对象(Mybatis)
- 扫描 dao 层接口,动态实现 dao 接口
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
| <?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" 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">
<context:property-placeholder location="classpath:jdbc.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}" />
<property name="maxPoolSize" value="30" /> <property name="minPoolSize" value="10" /> <property name="autoCommitOnClose" value="false" /> <property name="checkoutTimeout" value="10000" /> <property name="acquireRetryAttempts" value="2" /> </bean>
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean"> <property name="dataSource" ref="dataSource" /> <property name="configLocation" value="classpath:mybatis-config.xml" /> <property name="typeAliasesPackage" value="ac.hurley.ssm.entity" /> <property name="mapperLocations" value="classpath:mapper/*.xml" /> </bean>
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer"> <property name="sqlSessionFactoryBeanName" value="sqlSessionFactory" /> <property name="basePackage" value="ac.hurley.ssm.dao" /> </bean> </beans>
|
配置 MySQL 数据库相关参数,读取配置文件jdbc.properties
。
1 2 3 4
| jdbc.driver=com.mysql.jdbc.Driver jdbc.url=jdbc:mysql://localhost:3306/ssm?useUnicode=true&characterEncoding=utf8 jdbc.username=root jdbc.password=password
|
接着配置 dao 层的 Mybatis 核心文件mybatis-config.xml
。
- 使用自增主键
- 使用列别名
- 开启驼峰命名转换
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| <?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="useGeneratedKeys" value=" " />
<setting name="useColumnLabel" value=" " />
<setting name="mapUnderscoreToCamelCase" value=" " /> </settings> </configuration>
|
然后,是准备好 service 层的spring-service.xml
文件。
- 扫描 service 包内的所有
@Service
注解
- 配置事务管理器,把事务管理交给 Spring 来完成
- 配置基于注解的声明式服务,可以直接在方法上加上
@Transaction
注解
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
| <?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: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/tx http://www.springframework.org/schema/tx/spring-tx.xsd"> <context:component-scan base-package="ac.hurley.ssm.service" />
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"> <property name="dataSource" ref="dataSource" /> </bean>
<tx:annotation-driven transaction-manager="transactionManager" /> </beans>
|
然后,是配置 web 层,新建spring-web.xml
文件。
- 开启 SpringMVC 的注解模式,可以使用到
@RequestMapping
、@PathVariable
、@ResponseBody
等
- 对静态资源处理,如 js、css、图片等文件
- 配置 JSP,显示 ViewResolver,例如在 Controller 方法里返回一个
login
,那么就会返回/WEB-INF/login.jsp
中
- 扫描 web 层里的
@Controller
注解
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
| <?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:mvc="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-3.0.xsd">
<mvc:annotation-driven />
<mvc:default-servlet-handler/>
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver"> <property name="viewClass" value="org.springframework.web.servlet.view.JstlView" /> <property name="prefix" value="/WEB-INF/jsp/" /> <property name="suffix" value=".jsp" /> </bean>
<context:component-scan base-package="ac.hurley.ssm.web" /> </beans>
|
最后就是修改web.xml
文件,它位于 webapp 的 WEB-INF 包下。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
| <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 http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" version="3.1" metadata-complete=" "> <servlet> <servlet-name>seckill-dispatcher</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:spring/spring-*.xml</param-value> </init-param> </servlet> <servlet-mapping> <servlet-name>seckill-dispatcher</servlet-name> <url-pattern>/</url-pattern> </servlet-mapping> </web-app>
|
因为我们在项目中会经常用到日志,所以还需要配置日志文件,在 resources 包里新建logback.xml
文件,给出的日志输出格式也是最基本的控制台输出。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
|
<?xml version="1.0" encoding="UTF-8"?> <configuration debug=" "> <appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender"> <encoder> <pattern>%d{HH:mm:ss.SSS} [%thread] %-5level %logger{36} - %msg%n</pattern> </encoder> </appender>
<root level="debug"> <appender-ref ref="STDOUT" /> </root> </configuration>
|
最后的配置文件结构图如下所示: