Bem Pessoal estou começando a usar o Struts e estou tentando passar parametros para a página jsp, porem quando chama a action2.do no tomcat aparece ${param}.
Action:
package org.casa.Action2;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.struts.action.Action;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
public class Action2 extends Action {
@Override
public ActionForward execute(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response)
throws Exception {
String teste = new String("Rafael");
String parm = "param";
request.setAttribute(parm, teste);
System.out.println(teste);
return mapping.findForward("app2");
}
}
jsp:
<%@page pageEncoding="Cp1252" contentType="text/html; charset=Cp1252" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Cp1252"/>
<title> Site feito por Rafael </title>
</head>
<body>
<h3>Site feito por Rafael</h3>
<h4> ${param} </h4>
</body>
</html>
se for necessário so falar que eu passo qualquer outra informação(web.sml , struts-config.xml, estrutura de diretóios, etc…)