使用Spring Boot构建JSF项目

时间:2014-07-02 14:33:08

标签: jsf-2 spring-boot

我想用JSF和Maven构建一个Spring Boot项目。 我尝试了与artifact-id spring-boot-starter-web的依赖关系。 错误消息是缺少JSPFacelet。

了解每个人这些问题并解决了吗?

1 个答案:

答案 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>