3
我有一個Spring配置文件彈簧idol.xml與以下命名空間聲明一個新的命名空間聲明彈簧配置:將使用Spring IDE
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
....
</beans>
我想補充的空間聲明中AOP
<?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:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-2.0.xsd">
...
</beans>
有沒有辦法使用Spring IDE辦呢?現在,我能想到的唯一的辦法就是通過與AOP命名空間聲明一個新的Spring配置文件,然後從那裏複製和粘貼聲明配置文件在我的豆子。