Ich habe eine Spring-Konfigurationsdatei spring-idol.xml mit der folgenden Namespace-Deklaration:
<?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>
Ich möchte die Namespace-Deklaration für AOP hinzufügen
<?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>
Gibt es eine Möglichkeit, dies mit Spring IDE zu tun? Im Moment ist der einzige Weg, den ich mir vorstellen kann, eine neue Spring-Konfigurationsdatei mit der aop-Namespace-Deklaration zu erstellen und dann die Deklaration von dort in die Konfigurationsdatei zu kopieren und einzufügen, in der sich meine Beans befinden.