被自己蠢哭了
- 绿色的说明可以用且已经用到了。比如bean
- 灰色的是可以用但是还没用过。比如context
这时候你写一个<context:就会发现context变成绿色的了 - 红色就是不能用。复制爆红的网址(注意是xmlns后面的)
然后aop就可以用了
<aop:
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:context="http://www.springframework.org/schema/context"
xmlns:aop="http://www.springframework.org/schema/aop"
xmlns:tx="http://www.springframework.org/schema/tx"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx.xsd">
<context:
</beans>