Reputation: 828
I have an application which is using Jboss and being developed in JBoss Developer Studio and I am using Spring Security.
Suddenly the IDE started showing up an error in applicationContext.xml complaining that the referenced file contains errors.
Everything is configured to use java 1.7 and I don't see why that happens.
Does anybody has any idea what is going on here?
I am attaching an screen shot of the problem here.
Upvotes: 0
Views: 159
Reputation: 828
Solved changing this:
<beans:beans xmlns:sec="http://www.springframework.org/schema/security"
With this:
<beans xmlns:sec="http://www.springframework.org/schema/security"
Upvotes: 1