What are the eight life cycle hook functions of Vue>>>
Operating environment
System: window10
jdk:1.8
Development tool: Eclipse
After creating a new Maven project, when adding a parent node to the pom.xml file (the content is as follows), the file reported an error
< parent>
< groupId> org.springframework.boot</ groupId>
< artifactId> spring-boot-starter-parent</ artifactId>
< version> 1.5.7.RELEASE</ version>
</ parent>
The error information is as follows:
Error parsing lifecycle processing instructions
Solutions
According to the search results, two ideas are found
1. It is said that there is a problem with this version of eclipse, and the Maven plug-in needs to be updated
2. It is said that there is a dependency conflict. You can clear the Maven warehouse and update it again
Because spring boot has been used in other projects before, I guess it is a conflict. Looking at the spring boot version of previous projects, I found that 1.5.10.release was used, so I changed the parent to the following setting:
< parent>
< groupId> org.springframework.boot</ groupId>
< artifactId> spring-boot-starter-parent</ artifactId>
< version> 1.5.10.RELEASE</ version>
</ parent>
The problem of reporting errors is solved
Reference address: https://blog.csdn.net/u012810317/article/details/53302592
Similar Posts:
- Springboot Import Error: Cannot resolve org.springframework.boot:spring-boot-autoconfigure:2.6.2
- Unregistering JMX-exposed beans on shutdown Solution
- Eureka server project startup error handling
- Springboot always reports an error when importing JSP dependencies
- Error creating bean with name ‘com.github.pagehelper.autoconfigure.PageHelperAutoConfiguration’
- Spring boot starter parent cannot be found when creating Maven project, and the parent node reports an error
- [How to Solve] RestController cannot be recognized in spring boot
- How to Solve Error: spring-boot-maven-plugin not found
- org.springframework.beans.factory.BeanCreationException: Error creating bean with name ‘configurationPropertiesBeans’ defined in class path resource
- [Solved] Plugin ‘org.springframework.boot:spring-boot-maven-plugin:’not found