Francisco Souza
Francisco Souza

Reputation: 828

Referenced Spring XSD file contains errors in JBoss Developer Studio

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.enter image description here

Upvotes: 0

Views: 159

Answers (1)

Francisco Souza
Francisco Souza

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

Related Questions