org.springframework.beans.factory.BeanCreationException将spring启动应用程序转换为spring MVC war

时间:2016-10-28 10:08:36

标签: spring-mvc jsf spring-boot war

我正在尝试将我现有的应用程序从spring boot转换为spring mvc war。

我已对pom.xml进行了更改,例如将更改的包装更改为war并添加了以下依赖项:

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-tomcat</artifactId>
    <scope>provided</scope>
</dependency> 

创建了新的web.xml并为Faces Servlet添加了条目。

尝试在tomcat上部署战争时:

  

org.springframework.beans.factory.BeanCreationException。是的   引起的           引起:java.lang.NoClassDefFoundError:javax / faces / event / AjaxBehaviorEvent

1 个答案:

答案 0 :(得分:0)

你明显缺少javax.faces依赖

difference