Maven 多模块开发(五)-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"
    xsi:schemaLocation=" 
                http://www.springframework.org/schema/beans   
                http://www.springframework.org/schema/beans/spring-beans.xsd">

    <import resource="classpath*:applicationContext_dao.xml" />
    <import resource="classpath*:applicationContext_service.xml" />
    <import resource="classpath*:applicationContext_action.xml" />
</beans> 

猜你喜欢

转载自wenrisheng.iteye.com/blog/2110286