ssm單專案整合
阿新 • • 發佈:2018-11-24
目錄
前言
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
- 編寫前端頁面