我想用JSF和Maven构建一个Spring Boot项目。 我尝试了与artifact-id spring-boot-starter-web的依赖关系。 错误消息是缺少JSPFacelet。
了解每个人这些问题并解决了吗?
答案 0 :(得分:0)
也许您需要指定哪个工件是您POM的父级
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>1.1.3.RELEASE</version>
</parent>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
</dependencies>