Adi Mor
Adi Mor

Reputation: 2165

starting a spring 3.0 application

i stated a new spring project in the STS add a new spring configuration (it generate it automatically):

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="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.xsd">


</beans>

and i get the next error message from the STS:

Error occured processing XML 'null'. See Error Log for more details

what am i doing wrong?

Upvotes: 1

Views: 922

Answers (1)

bilash.saha
bilash.saha

Reputation: 7306

Its a STS bug. Take a look at

STS-2180
Status : open
Resolution : Unresolved

Edit
Adi Mor Found a solution from the spring forum : need to disable the Cache in the eclipse:

Window -> Preferences -> General -> Network Connections -> Cache -> Disable caching

Upvotes: 4

Related Questions