1234567891011121314151617181920212223 |
- <?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: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
- https://www.springframework.org/schema/context/spring-context.xsd">
- <!-- <bean id="userService1" class="com.service.impl.UserServiceImpl">-->
- <!--<!– <constructor-arg name="userDao" ref="UserDao"></constructor-arg>–>-->
- <!-- </bean>-->
- <!-- 加载外部 properties文件-->
- <context:property-placeholder location="jdbc.properties"></context:property-placeholder>
- <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
- <property name="driverClassName" value="${jdbc.driver}"></property>
- <property name="url" value="${jdbc.url}"></property>
- <property name="username" value="${jdbc.username}"></property>
- <property name="password" value="${jdbc.password}"></property>
- </bean>
- <!-- 组件扫描-->
- <context:component-scan base-package="com"></context:component-scan>
- </beans>
|