我需要做什么才能使用ManagedBean库?

时间:2014-05-05 05:28:03

标签: java eclipse maven jsf servlets

我一直在为我的bean使用anotation(之前我没有使用过它们),我发现我必须包含一些依赖项等等,就像这样:

 <!--JSF API-->
        <dependency>
            <groupId>com.sun.faces</groupId>
            <artifactId>jsf-api</artifactId>
            <version>2.0.2</version>
        </dependency>
        <dependency>
            <groupId>com.sun.faces</groupId>
            <artifactId>jsf-impl</artifactId>
            <version>2.0.2</version>
        </dependency>

        <!-- PrimeFaces -->
        <dependency>
            <groupId>org.primefaces</groupId>
            <artifactId>primefaces</artifactId>
            <version>3.3</version>
        </dependency>

        <!-- JSF -->
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>jstl</artifactId>
            <version>1.1.2</version>
        </dependency>
        <dependency>
            <groupId>javax.servlet.jsp</groupId>
            <artifactId>jsp-api</artifactId>
            <version>2.1</version>
            <scope>provided</scope>
        </dependency>

        <!-- Javax Servlet. This needs to be included for runtime only! -->
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>servlet-api</artifactId>
            <version>2.5</version>
            <scope>provided</scope>
        </dependency>   

嗯..问题是我不断收到错误

  

导入javax.faces无法解析

每次我需要使用托管bean ...我正在使用Maven,我应该已经下载了我需要的所有东西,我也尝试了其他POM,在那个项目中我可以使用anotations,所以,我猜是POM的错误配置?除了启用maven clean, maven eclipse, and maven eclipse skip test

之外,我没有做任何特别的事情

我真的检查了其他答案,例如:

The import javax.servlet can't be resolved How do I import the javax.servlet API in my Eclipse project?

但没有,任何想法可能出错?

2 个答案:

答案 0 :(得分:1)

您不应该导入servlet API,而是导入API的实现,例如您想要运行项目的servlet容器实现:Tomcat,JBoss,Websphere,Glassfish .... 例如。对于tomcat:

<dependency>
  <groupId>org.apache.tomcat</groupId>
  <artifactId>tomcat-servlet-api</artifactId>
  <version>7.0.30</version>
  <scope>provided</scope>
</dependency>   

答案 1 :(得分:0)

感谢您的回答,我检查了使用Maven它有点不同,在构建路径中您必须指定maven存储库的路径,因此,它将直接包含所有库,或者您可以复制并将它们复制到你的项目