after setting up a new Spring-based application, I ran into a problem with a link to the schema (http://www.springframework.org/schema/beans/spring-beans- 3.0.xsd) in the application context.
appContext.xml
<?xml version="1.0" encoding="UTF-8"?> <beans:beans xmlns:beans="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-3.0.xsd"> .... </beans:beans>
Error
Referenced file contains errors (http://www.springframework.org/schema/beans/spring-beans-3.0.xsd).
Even if I reduce the configuration to the minimum version (without defining a bean), I get this error. Does anyone know what's wrong here? Thanks in advance!
Btw: I am using STS 2.7.1
source share