MyEclipse加载项目 报错笔记

版权声明:本文为博主原创文章,随便转载。 https://blog.csdn.net/qq_36107346/article/details/84326106

一. No plugin found for prefix ‘war’ in the current project and in the plugin groups

No plugin found for prefix 'war' in the current project and in the plugin groups [] available from the repositories [local (C:\Users\oy\.m2\repository), local-nexus (http://***/nexus/content/groups/public/), nexus (http://**:8081/nexus/content/groups/public/)]

解决办法:
在pom里面添加 :

<dependency>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-resources-plugin</artifactId>
    <version>2.5</version>
</dependency>

二. 错误:Error occured processing XML ‘org/springframework/format/support/FormattingConversionServiceFactoryBean’. See Error Log for more details

Error occured processing XML 'org/springframework/format/support/FormattingConversionServiceFactoryBean'. See Error 
 Log for more details

解决办法:

猜你喜欢

转载自blog.csdn.net/qq_36107346/article/details/84326106