Error in spring application context schema

前端 未结 14 1080
借酒劲吻你
借酒劲吻你 2020-12-30 04:03

I have a maven-spring project in Eclipse and I have this annoying error message in one of my spring contexts:

Referenced file contains errors (jar:fil

14条回答
  •  再見小時候
    2020-12-30 04:29

    I have recently had same issue with JPA-1.3

    Nothing worked until I used explicit tools.xsd link

    xsi:schemaLocation=" ...
        http://www.springframework.org/schema/tool
        http://www.springframework.org/schema/tool/spring-tool-3.2.xsd
        ... ">
    

    like this:

    
    
    

提交回复
热议问题