SpringMVC+Mybaties 基本的配置

记录ing…

首先是application.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:aop="http://www.springframework.org/schema/aop"
	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-4.1.xsd
		http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.1.xsd
		http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.1.xsd
		http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.1.xsd">

	<!--开启注解扫描  -->
	<context:component-scan base-package="com.sc"></context:component-scan>
	
	<!--引入properties文件  -->
	<context:property-placeholder location="classpath:jdbc.properties"/>
	
	<!-- 配置数据源 -->
	<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource">
		<property name="driverClassName" value="${jdbc.driver}"></property>
		<property name="url" value="${jdbc.url}"></property>
		<property name="username" value="${jdbc.name}"></property>
		<property name="password" value="${jdbc.pass}"></property>
	</bean>
	
	<!-- 配置sqlSessionFactoryBean -->
	<bean id="sqlSessionFactoryBean" class="org.mybatis.spring.SqlSessionFactoryBean">
		<property name="dataSource" ref="dataSource"></property>
		<property name="configLocation" value="classpath:conf.xml"></property>
		<property name="typeAliasesPackage" value="com.sc.entiry"></property>
		<property name="mapperLocations" value="classpath:com/sc/mapper/*Mapper.xml"></property>
	</bean>
	
	<!--将mapper接口实现bean 并注入spring中   -->
	
	<bean id="mapperScannerConfigurer" class="org.mybatis.spring.mapper.MapperScannerConfigurer">
		<property name="basePackage" value="com.sc.mapper"></property>
		<property name="sqlSessionFactoryBeanName" value="sqlSessionFactoryBean"></property>
	</bean>
	
	<!--配置事务管理bean  -->
	<bean id="dataSourceTransactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
		<property name="dataSource" ref="dataSource"></property>
	</bean>
	
	<!--用xml配置事务管理  -->
	<tx:advice id="txadvice" transaction-manager="dataSourceTransactionManager">
		<tx:attributes>
			<tx:method name="sel*" propagation="NOT_SUPPORTED" read-only="true"/>
			<tx:method name="get*" propagation="NOT_SUPPORTED" read-only="true"/>
			<tx:method name="query*" propagation="NOT_SUPPORTED" read-only="true"/>
			<tx:method name="*" propagation="REQUIRED" read-only="false"/>
		</tx:attributes>
	</tx:advice>
	
	<!--配置aop事务切面  -->
	<aop:config>
		<aop:pointcut expression="execution(* com.sc.service..*.*(..))" id="pc"/>
		<aop:advisor advice-ref="txadvice" pointcut-ref="pc"/>
	</aop:config>
</beans>

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:p="http://www.springframework.org/schema/p"
	xmlns:mvc="http://www.springframework.org/schema/mvc"
	xmlns:context="http://www.springframework.org/schema/context"
	xsi:schemaLocation="http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.1.xsd
		http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.1.xsd
		http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.1.xsd">
	
	<!--开启注解扫描  -->
	<context:component-scan base-package="com.sc.controller"></context:component-scan>
	
	<!--配置适配器和映射器  -->
	<mvc:annotation-driven></mvc:annotation-driven>
	
	<!--配置视图管理  -->
	<bean id="internalResourceViewResolver" class="org.springframework.web.servlet.view.InternalResourceViewResolver">
		<property name="viewClass" value="org.springframework.web.servlet.view.JstlView"></property>
		<property name="prefix" value="/WEB-INF/"></property>
		<property name="suffix" value=".jsp"></property>
	</bean>
	
	<!--配置文件上传  -->
	<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
		<property name="defaultEncoding" value="utf-8"></property>
		<property name="maxUploadSize" value="10000000"></property>
		<property name="resolveLazily" value="true"></property>
	</bean>
	
	<!--配置拦截器  -->
	<mvc:interceptors>
		<mvc:interceptor>
		<mvc:mapping path="/getlist/**"/>
			<mvc:exclude-mapping path="/loginctlr/**"/>		
			<bean id="loginInterceptor" class="com.sc.interceptor.LoginInterceptor"></bean>	
		</mvc:interceptor>
	</mvc:interceptors>
	
	<!--配置全局异常  -->
	<bean id="globleException" class="com.sc.Exception.GlobleException"></bean>
	
	
</beans>

conf.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>
	<settings>
		<!--开启驼峰命名法  -->
		<setting name="mapUnderscoreToCamelCase" value="true"/>
		<!--开启二级缓存  -->
		<setting name="cacheEnabled" value="true"/>
	</settings>
	
	<plugins>
		<!--分页插件  -->
		<plugin interceptor="com.github.pagehelper.PageHelper"></plugin>
	</plugins>
</configuration>

。。。
demo 地址:
https://github.com/2900498871/depository.git

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值