artaxerxe
artaxerxe

Reputation: 6411

How to use <c:out value=...> taglib

I have the class A:

package a;

public class A {
private int x = 9;

public int getX() {
    return x;
}
}

and the ajsp.jsp file:

<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
<jsp:useBean id = "a" class = "a.A" />
<c:out value = "${a.x}" />
</body>
</html>

when i run it, it gives an error :

if instead of <c:out value = "${a.x}" /> i use <jsp:getProperty property="x" name="a"/> it goes perfect. So, what is the problem? Thank advance.

Upvotes: 3

Views: 14454

Answers (1)

skaffman
skaffman

Reputation: 403501

Your taglib URI is incorrect, you're using the URI of the old pre-expression, pre-JSP 2.0 library.

Instead of

http://java.sun.com/jstl/core

it should be

http://java.sun.com/jsp/jstl/core

Upvotes: 8

Related Questions