1. 程式人生 > >SSM整合(Maven管理)

SSM整合(Maven管理)

SSM的整合實質是就是配置檔案的配置。我就做了一個連線本地mysql資料庫進行按id查詢的小Demo。麻雀雖小五臟俱全。希望你能有所幫助,這裡採用的是Maven進行管理。這個專案一共抽了5個配置檔案,當然在實際的專案開發者,會分的更細。

至於如何在eclipse下建立maven管理的ssm整合專案,網上的資源非常的多

資料庫常量配置檔案:db.properties

這裡的內容就不用細說。就是連線資料庫的那一套、

jdbc.driver=com.mysql.jdbc.Driver
jdbc.url=jdbc:mysql:///mybatis
jdbc.username=root
jdbc.password=root
jdbc.maxTotal=30
jdbc.maxIdle=10
jdbc.InitialSize=5
jdbc.validationQuery=select 1

Spring的配置檔案:applicationContext.xml

這裡的配置朱主要包括:載入資料來源,配置事物,Mybatis工廠配置(配置資料來源,指定mybatis的核心配置檔案,指定對映檔案),mapper掃描器,掃描service。

著重注意的是mapper掃描器:這裡配置的是自動掃描,這樣的話在mayatis的配置檔案中就不需要為每一個mapper配置對映檔案。同時也不需要在spring的配置檔案中為每一個mapper配置例項類。大大的簡化配置。

著重注意的掃描service:因為該專案是通過註解的方式為service層建立bean,並在service層中引用註解。而dao層(mapper)因為配置的是自動掃描後會在spring容器中自動配置bean。因此不需要掃描dao層。

<?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"
	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/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
     http://www.springframework.org/schema/mvc  
     http://www.springframework.org/schema/mvc/spring-mvc-.xsd ">
	<!-- 讀取配置源 -->
	<context:property-placeholder
		location="classpath:db.properties" />
	<bean id="dataSource"
		class="org.apache.commons.dbcp2.BasicDataSource">
		<!-- 注入屬性值 -->
		<property name="driverClassName" value="${jdbc.driver}"></property>
		<property name="url" value="${jdbc.url}"></property>
		<property name="username" value="${jdbc.username}"></property>
		<property name="password" value="${jdbc.password}"></property>
		<property name="maxIdle" value="${jdbc.maxIdle}"></property>
		<property name="InitialSize" value="${jdbc.InitialSize}"></property>
		<property name="validationQuery" value="${jdbc.validationQuery}" />
	</bean>

	<!-- Mybatis檔案 -->
	<bean id="sqlSessionFactory"
		class="org.mybatis.spring.SqlSessionFactoryBean">
		<!-- 指定mybatis的核心配置檔案 -->
		<property name="configLocation"
			value="classpath:mybatis-config.xml" />
		<!-- mapper的介面和對映檔案就可以不配置在同一個包下。mapper掃描器掃描的是介面所在的包。 -->
		<property name="mapperLocations">
			<array>
				<value>classpath:/mapper/*.xml</value>
			</array>
		</property>

		<!-- 注入資料來源 -->
		<property name="dataSource" ref="dataSource" />
	</bean>



	<!-- 配置mapper掃描器 -->
	<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
		<property name="basePackage" value="com.huawei.dao"></property>
	</bean>

	<!-- 掃描service -->
	<context:component-scan
		base-package="com.huawei.service.impl"></context:component-scan>

	<!-- 事務管理器 -->
	<bean id="transactionManager"
		class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
		<property name="dataSource" ref="dataSource" />
	</bean>
	<!-- 開啟事物註解 -->
	<tx:annotation-driven
		transaction-manager="transactionManager" />
</beans>

mybatis的配置檔案mybatis-config.xml

同樣的由於在applicationContexy.xml中配置了資料來源和開啟了mapper自動掃描。這裡的配置簡化為根據pojo類路徑進行別名配置即可。

<?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>
	<!-- 全域性別名設定,在對映檔案中只需寫別名,而不必寫出整個類路徑 -->
	<typeAliases>
		<package name="com.huawei.model" />
	</typeAliases>

</configuration>

Spring MVC 的配置檔案springnvc-config.xml

這裡需要配置的也很少。包括配置掃描controller註解的類,載入mvc註解驅動,配置檢視解析器。

<?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:p="http://www.springframework.org/schema/p"
	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-3.0.xsd  
     http://www.springframework.org/schema/context  
     http://www.springframework.org/schema/context/spring-context-3.0.xsd  
     http://www.springframework.org/schema/mvc  
     http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd  
     ">

<!-- 配置包掃描器,掃描@controller註解的類 -->
	<context:component-scan
		base-package="com.huawei.controller"></context:component-scan>
<!-- 載入註解驅動 -->
<mvc:annotation-driven/>
	<!-- 檢視解析器 可以設定字首和字尾,這樣在Controller中跳轉到指定介面就可以簡化 -->
	<bean
		class="org.springframework.web.servlet.view.InternalResourceViewResolver">

		<property name="prefix" value="/WEB-INF/jsp/"></property>
		<property name="suffix" value=".jsp"></property>

	</bean>

</beans>

Web.xml

這裡需要配置的有spring-mvc的前端控制器,spring的檔案監聽器,編碼過濾器。

<?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>SSM configuration</display-name>
    <!-- 解決工程編碼過濾器 -->
    <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檔案的監聽器 -->
    <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>
    
    <!-- SpringMVC配置 -->
    <servlet>
        <servlet-name>springDispatcherServlet</servlet-name>
        <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
        <init-param>
            <param-name>contextConfigLocation</param-name>
            <param-value>classpath:springmvc-config.xml</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
        <servlet-name>springDispatcherServlet</servlet-name>
        <url-pattern>/</url-pattern>
    </servlet-mapping>
    
    <welcome-file-list>
      <welcome-file>index.html</welcome-file>
      <welcome-file>index.jsp</welcome-file>
    </welcome-file-list>
</web-app>