ssm单项目整合
Posted birdofparadise
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ssm单项目整合相关的知识,希望对你有一定的参考价值。
目录
前言
spring、mybatis、springmvc的整合。
创建maven项目
main
├─java
│ └─com
│ └─alvin
│ ├─controller
│ ├─mapper
│ └─service
├─resources
│ ├─mybatis
│ └─spring
└─webapp
└─WEB-INF
添加依赖
代码
```配置文件
总览
tree ./src/main /F > treeAll.txt
touch jdbc.properties
touch mybatis/SqlMapConfig.xml
touch spring/applicationContext-dao.xml
touch spring/applicationContext-service.xml
touch spring/applicationContext-trans.xml
touch spring/springmvc.xml
main
├─java
│ └─com
│ └─alvin
│ ├─controller
│ ├─mapper
│ └─service
├─resources
│ │ jdbc.properties
│ │
│ ├─mybatis
│ │ SqlMapConfig.xml
│ │
│ └─spring
│ applicationContext-dao.xml
│ applicationContext-service.xml
│ applicationContext-trans.xml
│ springmvc.xml
│
└─webapp
│ index.jsp
│
└─WEB-INF
web.xml
jdbc配置
jdbc.properties
jdbc.driver = com.mysql.jdbc.Driver
jdbc.url = jdbc:mysql://127.0.0.1:3306/db_test?characterEncoding=utf8
jdbc.username = root
jdbc.password = root
mappers.package = com.alvin.mapper
mybatis配置
SqlMapConfig.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>
</configuration>
dao层配置
applicationContext-dao.xml
- 加载jdbc文件
- 数据源
- SQLSessionFactory
- 包扫描
<?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">
<!--加载jdbc.properties配置文件-->
<context:property-placeholder location="classpath:jdbc.properties"/>
<!-- 3. 配置数据源 -->
<!-- 数据源配置, 使用 Druid 数据库连接池 -->
<bean name="dataSource" class="com.alibaba.druid.pool.DruidDataSource" init-method="init" destroy-method="close">
<!-- 四大属性 -->
<property name="driverClassName" value="${jdbc.driver}" />
<property name="url" value="${jdbc.url}" />
<property name="username" value="${jdbc.username}" />
<property name="password" value="${jdbc.password}" />
<!-- 配置初始化连接个数 -->
<property name="initialSize" value="0" />
<!-- 配置最小空闲连接 -->
<property name="minIdle" value="0" />
<!-- 配置最大的活动连接 -->
<property name="maxActive" value="15" />
<!-- 配置获取连接等待超时的时间 -->
<property name="maxWait" value="60000" />
<!-- 获取链接的时候,不校验是否可用,开启会有损性能
这里建议配置为TRUE,防止取到的连接不可用。-->
<property name="testOnBorrow" value="true" />
<!-- 归还链接到连接池的时候校验链接是否可用 -->
<property name="testOnReturn" value="false" />
<!-- 此项配置为true即可,不影响性能,并且保证安全性。
意义为:申请连接的时候检测,如果空闲时间大于timeBetweenEvictionRunsMillis,
执行validationQuery检测连接是否有效 -->
<property name="testWhileIdle" value="true" />
<!-- 配置间隔多久才进行一次检测,检测需要关闭的空闲连接,单位毫秒 -->
<property name="timeBetweenEvictionRunsMillis" value="60000" />
<!-- 配置一个连接在池中最小生存的时间,单位毫秒 -->
<property name="minEvictableIdleTimeMillis" value="300000" />
<!-- 链接使用超过时间限制是否回收 -->
<property name="removeAbandoned" value="true" />
<!-- 超过时间限制时间(单位秒),目前为5分钟,如果有业务处理时间超过5分钟,可以适当调整。 -->
<property name="removeAbandonedTimeout" value="300" />
<!-- #链接回收的时候控制台打印信息,测试环境可以加上true,线上环境false。会影响性能。 -->
<property name="logAbandoned" value="false" />
<!-- 验证连接有效与否的SQL,不同的数据配置不同 -->
<property name="validationQuery" value="select 1 " />
</bean>
<!--配置SqlSessionFactory,需要使用mybatis-spring整合包中的类-->
<bean class="org.mybatis.spring.SqlSessionFactoryBean">
<!--配置数据源-->
<property name="dataSource" ref="dataSource"/>
<!--加载MyBatis的配置文件,SqlMapConfig.xml.现在为空文件-->
<property name="configLocation" value="classpath:mybatis/SqlMapConfig.xml"/>
</bean>
<!--配置Mapper扫描,需要使用mybatis-spring整合包中的类-->
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<!--配置Mapper扫描的包-->
<property name="basePackage" value="com.alvin.mapper"/>
</bean>
</beans>
service层配置
applicationContext-service.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"
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">
<!--扫描service的注解,让注解生效-->
<context:component-scan base-package="com.alvin.service"/>
</beans>
事务配置
applicationContext-trans.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:tx="http://www.springframework.org/schema/tx" xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd">
<!--配置事务管理器-->
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
<!--这里报错,原因是IDEA在这个xml配置中没有找到dataSource-->
<!--不用管这个错误,Spring启动的时候,会把所有的配置全部加在,包括数据源的配置(在dao里)-->
<property name="dataSource" ref="dataSource"/>
</bean>
<!--配置在哪个方法上执行-->
<tx:advice id="tx" transaction-manager="transactionManager" >
<tx:attributes>
<!--所有以trans,save,update,delete开头的方法都会进行事务管理,
因为默认的配置就是要进行事务管理-->
<tx:method name="trans*"/>
<tx:method name="save*"/>
<tx:method name="update*"/>
<tx:method name="delete*"/>
<!--以下配置都不进行事务管理-->
<tx:method name="query*" propagation="SUPPORTS" read-only="true"/>
<tx:method name="get*" propagation="SUPPORTS" read-only="true"/>
<tx:method name="find*" propagation="SUPPORTS" read-only="true"/>
</tx:attributes>
</tx:advice>
<!--配置在什么地方执行-->
<aop:config>
<aop:advisor advice-ref="tx"
pointcut="execution(* com.alvin.service.impl.*.*(..))"/>
</aop:config>
</beans>
controller配置
- 包扫描
- 注解驱动
- 视图解析器
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: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.xsd">
<!--配置Controller的包扫描-->
<context:component-scan base-package="com.alvin.controller"/>
<!--配置注解驱动-->
<mvc:annotation-driven/>
<!--配置视图解析器-->
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsp/"/>
<property name="suffix" value=".jsp"/>
</bean>
</beans>
web.xml
项目首先加载的配置文件
- 加载所有配置文件
- 启动spring容器
- 解决post乱码
- 配置前端控制器
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
id="WebApp_ID" version="2.5">
<display-name>Archetype Created Web Application</display-name>
<!--配置Spring随着项目的启动创建,就是Spring和web项目的整合-->
<!--配置创建Spring容器需要加载的配置文件-->
<context-param>
<!--contextConfigLocation:是固定写法,是spring中的一个属性-->
<param-name>contextConfigLocation</param-name>
<!--因为Spring配置有很多,我们需要启动的时候全部加在,所以使用*-->
<param-value>classpath:spring/applicationContext-*.xml</param-value>
</context-param>
<!--配置监听器,让Spring容器随着ServletContext的创建而创建-->
<!--(Tomcat启动,web应用就启动,Spring容器就创建了)-->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!--配置POST乱码解决的过滤器-->
<filter>
<filter-name>encoding</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>encoding</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<!--配置SpringMVC的前端控制器-->
<servlet>
<servlet-name>dispatcherServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<!--加载SpringMVC核心配置文件-->
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:spring/springmvc.xml</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<!--配置所有的请求都进入SpringMVC-->
<servlet-mapping>
<servlet-name>dispatcherServlet</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
</web-app>
使用
- 编写pojo
- 编写mapper接口
- 编写Mapper.xml映射文件
- 编写Service接口
- 编写Service实现
- 编写Controller
- 编写前端页面
以上是关于ssm单项目整合的主要内容,如果未能解决你的问题,请参考以下文章