初学ssm时,在applicationContext.xml中配置事务增强时,<tx:attributes>标签标红
解决办法:更改bean的引用约束
xmlns:tx="http://www.springframework.org/schema/cache"
改为
xmlns:tx="http://www.springframework.org/schema/tx"
注意这里也要修改:
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx.xsd
改后,问题解决。