码迷,mamicode.com
首页 > 移动开发 > 详细

applicationContext.xml配置文件

时间:2017-10-17 21:40:47      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:one   mysql   .com   ann   mysq   cto   jdbc   root   roo   

<?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-3.1.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.1.xsd

">
<!--扫描 -->
<context:component-scan base-package="*"></context:component-scan>
<!--配置数据源 -->
<bean id="data" class="org.apache.commons.dbcp.BasicDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver"></property>
<property name="url" value="jdbc:mysql://127.0.0.1:3306/test?characterEncoding=utf-8"></property>
<property name="username" value="root"></property>
<property name="password" value=""></property>
</bean>

<bean id="factory" class="org.mybatis.spring.SqlSessionFactoryBean">
<property name="configLocation" value="classpath:mybatis-config.xml"></property>
<property name="dataSource" ref="data"></property>
</bean>

<bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<property name="basePackage" value="*"></property>

</bean>

 

 

 


</beans>

applicationContext.xml配置文件

标签:one   mysql   .com   ann   mysq   cto   jdbc   root   roo   

原文地址:http://www.cnblogs.com/liangguangqiong/p/7683784.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!