【applicationContext.xml配置文件】相逢意气为君饮,系马高楼垂柳边。这篇文章主要讲述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="https://www.songbingjia.com/android/com.mysql.jdbc.Driver">
<
/property>
<
property name="url" value="https://www.songbingjia.com/android/jdbc:mysql://127.0.0.1:3306/test?characterEncoding=utf-8">
<
/property>
<
property name="username" value="https://www.songbingjia.com/android/root">
<
/property>
<
property name="password" value="">
<
/property>
<
/bean>
<
bean id="factory" class="org.mybatis.spring.SqlSessionFactoryBean">
<
property name="configLocation" value="https://www.songbingjia.com/android/classpath:mybatis-config.xml">
<
/property>
<
property name="dataSource" ref="data">
<
/property>
<
/bean>
<
bean class="org.mybatis.spring.mapper.MapperScannerConfigurer">
<
property name="basePackage" value="https://www.songbingjia.com/android/*">
<
/property>
<
/bean>
<
/beans>
推荐阅读
- Spring中ApplicationContext与BeanFactory容器的区别
- **Mapper.xml配置文件(不同情况不同配置)
- android 真机调试时ADB.exe 未响应解决办法
- adb获取Android性能数据
- Android .9 图片
- AutoMapper.Mapper.CreateMap报“System.NullReferenceException: 未将对象引用设置到对象的实例。”异常复现
- 在springmvc中 @RequestMapping(value=https://www.songbingjia.com/android/{"", "/"})表示的意思
- Ubuntu 安装Appium
- apply的“非改变this“的用法