applicationContext.xml配置文件
Posted 艾子琼
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了applicationContext.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-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配置文件的主要内容,如果未能解决你的问题,请参考以下文章
applicationContext.xml和web.xml的一些配置
在 applicationContext.xml 中找不到 Spring 配置资源
hibernate.cfg.xml 和 applicationContext.xml的关系,
spring applicationContext.xml 配置文件 详解