maven:Failed to start component [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]

springboot +maven 启动时报错:

Failed to start component [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]

NoClassDefFoundError: javax/annotation/security/DeclareRoles

解决办法:

添加依赖项:

<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>1.2</version>
</dependency>

猜你喜欢

转载自www.cnblogs.com/ssyuhh/p/9375462.html