一、配置错误
1.错误描述
1.选择项目-->运行方式-->maven build,要求输入goals的名字,输入“SpringMvcRun”
其他名字报错如下:
Unknown lifecycle phase "SpringMvcRun". You must specify a valid lifecycle phase or a goal in the format
2.解决方法
将SpringMvcRun修改为package,点击运行即可生成war包,不会报以上错误。
3.原因分析
二、log4j、sjf4j-log4j日志模块告警
错误信息
SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
操作:补全jar包
网上查询资料,说要日志相关的jar包还不全,要补充,我在pom.xml中配置之后如下:
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.2</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-nop</artifactId>
<version>1.7.2</version>
</dependency>
仍然出现以上告警,还未解决