Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

no tag was defined for name: viewAction

Tags:

jsf-2

I have just incorporated JSF 2.2.2 in my existing project and I want to use f:viewAction but I am getting the following error.

<f:viewAction> Tag Library supports namespace: http://java.sun.com/jsf/core, \
but no tag was defined for name: viewAction

Here is my code:

<f:metadata>
    <f:viewAction action="#{testBean.doIT}"/>
</f:metadata>

Here is my controller:

@Named("testBean")
@Scope(ScopeType.VIEW)
public class TestBeanimplements Serializable {
public void doIT(){
  System.out.println("Test Working !!!!!!!!");
    }
}

Here is my maven configuration for JSF:

<dependency>
    <groupId>com.sun.faces</groupId>
    <artifactId>jsf-api</artifactId>
    <version>2.2.2</version>
    <scope>provided</scope>
</dependency>
<dependency>
    <groupId>com.sun.faces</groupId>
    <artifactId>jsf-impl</artifactId>
    <version>2.2.2</version>
    <scope>provided</scope>
</dependency>
<dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>javax.servlet-api</artifactId>
    <version>3.0.1</version>
    <scope>provided</scope>
</dependency>
<dependency>
    <groupId>javax.servlet.jsp</groupId>
    <artifactId>javax.servlet.jsp-api</artifactId>
    <version>2.2.1</version>
    <scope>provided</scope>
</dependency>
<dependency>
    <groupId>javax.el</groupId>
    <artifactId>javax.el-api</artifactId>
    <version>2.2.1</version>
    <scope>provided</scope>
</dependency>
<dependency>
    <groupId>javax.servlet.jsp.jstl</groupId>
    <artifactId>jstl-api</artifactId>
    <version>1.2</version>
    <scope>provided</scope>
</dependency>

Could anyone please explain to me why I am getting this error ?

like image 947
Mithun Avatar asked Aug 21 '13 04:08

Mithun


1 Answers

You have to use the new namespace: xmlns:f="http://xmlns.jcp.org/jsf/core"

like image 196
Mike Braun Avatar answered Nov 15 '22 09:11

Mike Braun