jspに引数として渡された文字列を何とか印刷できますか? アクションがあるとしましょう: package com.test;
public class TestAction extends Action {
String foo="bar";
@Override
public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
//request.setParameter("foo", doo); // this does not work, I would like to achieve it.
return mapping.findForward("sql");
}
}
およびjspファイル:
<!DOCTYPE html>
<%@page contentType="text/html"%>
<%@page pageEncoding="UTF-8" %>
<%@page import="com.test.TestAction" %>
<%= request.getParameter("foo") %>
struts-config.xml に次のように定義しました。
<action
name="loginForm"
path="/login"
scope="request"
type="com.test.com.test.TestAction"
validate="false">
<forward name="sql" path="/index.jsp" />
</action>
私はそれを行うことができますか?