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