本文記錄了Spring+SpringMVC+MyBatis+Maven框架整合的記錄,主要記錄以下幾點(diǎn)
一、Maven需要引入的jar包
二、Spring與SpringMVC的配置分離
三、Spring與MyBatis的整合
一、Maven需要引入的jar包
本文默認(rèn)讀者已經(jīng)掌握Maven的使用,Maven配置片段如下
Xml代碼
<!-- 引入spring-webmvc與spring-jdbc -->
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>${springframework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>${springframework.version}</version>
</dependency>
<!-- 引入mybatis與mybatis-spring整合包 -->
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>${mybatis.version}</version>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-spring</artifactId>
<version>${mybatis-spring.version}</version>
</dependency>
<!-- 引入oracle數(shù)據(jù)庫(kù)jdbc驅(qū)動(dòng)包 -->
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc14</artifactId>
<version>${oracle14.version}</version>
</dependency>
<!-- 引入c3p0連接池依賴包 -->
<dependency>
<groupId>c3p0</groupId>
<artifactId>c3p0</artifactId>
<version>${c3p0.version}</version>
</dependency>
二、Spring與SpringMVC的配置分離
1、有必要說明一下,web.xml中配置的執(zhí)行順序:
listener>filter>servlet,而同一種配置片段則按照從上到下的順序執(zhí)行。
2、web.xml的配置片段,下面的配置信息將Spring與SpringMVC的配置分別放到了applicationContext*.xml和springmvc-servlet.xml
Xml代碼
<!-- 配置spring-web上下文監(jiān)聽器 -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<!-- 配置需要讀取的spring配置文件路徑 -->
<!-- classpath*表示讀取多個(gè)classpath -->
<!-- applicationContext*表示匹配多個(gè)applicationContext開頭的spring配置文件 -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath*:applicationContext*.xml</param-value>
</context-param>
<!-- 配置springmvc的DispatcherServlet,處理所有.do結(jié)尾的url -->
<servlet>
<servlet-name>springmvc</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<!-- 配置springmvc的配置文件路徑 -->
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:springmvc-servlet.xml</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>springmvc</servlet-name>
<url-pattern>*.do</url-pattern>
</servlet-mapping>
<!-- 配置springmvc編碼攔截器 -->
<filter>
<filter-name>encodingFilter</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>encodingFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
3、springmvc的配置片段如下,springmvc-servlet.xml
Xml代碼
<!-- 自動(dòng)掃描注解,只掃描的Controller注解,其它注解的掃描交給spring去處理 -->
<context:component-scan base-package="org.jisonami.controller">
<context:include-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
</context:component-scan>
<!-- 配置springmvc的視圖解析器 -->
<bean id="viewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver"
p:prefix="/WEB-INF/content/" p:suffix=".jsp">
</bean>
4、目前本例中只是用了一個(gè)spring配置文件,即applicationContext.xml,如下:
<!-- 自動(dòng)掃描spring注解,排除springmvc已掃描的Controller注解 -->
Xml代碼
<context:component-scan base-package="org.jisonami">
<context:exclude-filter type="annotation" expression="org.springframework.stereotype.Controller"/>
</context:component-scan>
5、關(guān)于spring配置文件中的xml頭部:
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:p="http://www.springframework.org/schema/p"
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">
6、此時(shí)已經(jīng)可以在代碼中使用注解來配置spring的bean了,即如下形式的代碼完成依賴注入:
Java代碼
@Autowired
private UserService userService;
三、Spring與MyBatis的整合
1、MyBatis的使用主要是使用Mapper接口+Mapper.xml中寫sql的方式來實(shí)現(xiàn)更靈活的dao層,這一部分在與spring整合之后是不變的
而mybatis的全局配置文件則是SqlMapConfig.xml,也可以是其它的名字。
2、整合之前,數(shù)據(jù)庫(kù)的連接信息是在SqlMapConfig.xml中配置的,并且Mapper的掃描也是在SqlMapConfig.xml中配置的
最麻煩的是我們完成crud操作的代碼有比較多的冗余,即如下所示的形式:
Java代碼
// 完成一個(gè)新增操作
InputStream is = Resources.getResourceAsStream("SqlMapConfig.xml");
SqlSessionFactory sessionFactory = new SqlSessionFactoryBuilder().build(is);
SqlSession session = sessionFactory.openSession();
UserMapper userMapper = session.getMapper(UserMapper.class);
userMapper.save(user);
session.commit();
session.close();
3、與spring整合的目的則是將SqlSessionFactory、SqlSession、UserMapper的創(chuàng)建和SqlSession的事物提交與關(guān)閉交給spring容器進(jìn)行管理,
實(shí)現(xiàn)只需要調(diào)用一行代碼的效果,即
Java代碼
userMapper.save(user);
4、整合之后,數(shù)據(jù)庫(kù)的連接信息與Mapper的掃描的配置片段直接移到applicationContext.xml中去了,完成SqlSessionFactory、SqlSession、UserMapper注入
applicationContext.xml中mybatis的配置片段:
Xml代碼
<!-- mybatis與spring整合 -->
<!-- 加載數(shù)據(jù)庫(kù)配置文件 -->
<context:property-placeholder location="classpath:DBConfig.properties"/>
<!-- 配置數(shù)據(jù)源,使用c3p0連接池 -->
<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource" destroy-method="close">
<property name="driverClass" value="${jdbc.driver}"></property>
<property name="jdbcUrl" value="${jdbc.url}"></property>
<property name="user" value="${jdbc.user}"></property>
<property name="password" value="${jdbc.pass}"></property>
</bean>
<!-- 配置sqlSessionFactory -->
<bean id="sqlSessionFactory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="configLocation" value="classpath:SqlMapConfig.xml" />
<property name="dataSource" ref="dataSource" />
</bean>
<!-- 掃描mapper接口 -->
<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<property name="basePackage" value="org.jisonami.mybatis.mapper"></property>
<property name="sqlSessionFactoryBeanName" value="sqlSessionFactory"></property>
</bean>
5、原來的SqlMapConfig.xml文件中只剩下寥寥幾行配置信息,
Xml代碼
<configuration>
<!-- 給entity起別名,在mapper配置文件中寫sql語句時(shí)會(huì)用到 -->
<typeAliases>
<package name="org.jisonami.entity"/>
</typeAliases>
</configuration>
6、以UserMapper.xml配置片段為例,描述整合后的簡(jiǎn)潔編程方式
Xml代碼
<!-- mapper的命名空間namespace是Mapper接口的全限定名 -->
<mapper namespace="org.jisonami.mybatis.mapper.UserMapper">
<!-- id是唯一標(biāo)識(shí)符,與Mapper接口的方法名保持一致,參數(shù)類型parameterType是參數(shù)類型的全限定名,這里使用的是別名 -->
<insert id="save" parameterType="User">
<selectKey keyColumn="id" keyProperty="id" resultType="String" order="BEFORE">
select sys_guid() from dual
</selectKey>
insert into t_user(id, name, password) values(#{id}, #{name}, #{password})
</insert>
</mapper>
UserMapper接口中的方法聲明如下:
Java代碼
public interface UserMapper {
public void save(User user);
}
調(diào)用部分代碼,直接注入U(xiǎn)serMapper
Java代碼
@Autowired
private UserMapper userMapper;
public void save(User user) {
userMapper.save(user);
}
獲取【下載地址】 【免費(fèi)支持更新】
三大數(shù)據(jù)庫(kù) mysql oracle sqlsever 更專業(yè)、更強(qiáng)悍、適合不同用戶群體
【新錄針對(duì)本系統(tǒng)的視頻教程,手把手教開發(fā)一個(gè)模塊,快速掌握本系統(tǒng)】
A集成代碼生成器 [正反雙向(單表、主表、明細(xì)表、樹形表,開發(fā)利器)+快速構(gòu)建表單;
freemaker模版技術(shù) ,0個(gè)代碼不用寫,生成完整的一個(gè)模塊,帶頁(yè)面、建表sql腳本,處理類,service等完整模塊
B 集成阿里巴巴數(shù)據(jù)庫(kù)連接池druid;
數(shù)據(jù)庫(kù)連接池 阿里巴巴的 druid。Druid在監(jiān)控、可擴(kuò)展性、穩(wěn)定性和性能方面都有明顯的優(yōu)勢(shì)
C集成安全權(quán)限框架shiro ;
Shiro 是一個(gè)用 Java 語言實(shí)現(xiàn)的框架,通過一個(gè)簡(jiǎn)單易用的 API 提供身份驗(yàn)證和授權(quán),更安全,更可靠
D 集成ehcache 分布式緩存 ;
是一個(gè)純Java的進(jìn)程內(nèi)緩存框架,具有快速、精干等特點(diǎn),廣泛使用的開源Java分布式緩存。
E 集成微信接口開發(fā); F 圖片爬蟲技術(shù); G SQL 編輯器, 支持復(fù)雜sql語句,生成報(bào)表,可以導(dǎo)出excel;
H websocket及時(shí)通訊技術(shù);(即時(shí)聊天、及時(shí)站內(nèi)信并聲音提醒、實(shí)時(shí)在線管理、websocket及時(shí)刷新頁(yè)面);
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)cdcxhl.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時(shí)售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國(guó)服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡(jiǎn)單易用、服務(wù)可用性高、性價(jià)比高”等特點(diǎn)與優(yōu)勢(shì),專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場(chǎng)景需求。
網(wǎng)站題目:Spring+SpringMVC+MyBatis+Maven框架整合-創(chuàng)新互聯(lián)
網(wǎng)頁(yè)鏈接:http://aaarwkj.com/article24/cojcje.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供建站公司、App設(shè)計(jì)、動(dòng)態(tài)網(wǎng)站、品牌網(wǎng)站制作、網(wǎng)站排名、外貿(mào)建站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容