gpt4 book ai didi

java - 如何在 struts 2.x 的 jsp 页面上访问私有(private)字段?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:12:15 25 4
gpt4 key购买 nike

大家好,我正在使用 struts 2.x 并且对于这个框架来说非常新。我遵循教程和步骤列表,我的应用程序正常工作,但有一件事我不清楚,比如当我在我的操作类中声明一个私有(private)字段并使用 struts 标记时,jsp 页面可以访问该私有(private)字段。所以我无法理解它是如何发生的:

struts.xml

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"http://struts.apache.org/dtds/struts-2.0.dtd">
<struts>


<package name="default" namespace="/home" extends="struts-default">

<action name="message" class="com.csc.action.MessageAction">
<result name="hello">/hello.jsp</result>
<result name="bye">/bye.jsp</result>
</action>
<action name="add" class="com.csc.action.Mathaction">
<result name="success">/hello.jsp</result>
<result name="fail">/bye.jsp</result>
</action>
</package>



</struts>

MessageAction.java

package com.csc.action;

import com.csc.service.BussniessServ;

public class MessageAction {

private String result;

private String value;

private String fstvalue;

private String scndvalue;
public String getFstvalue() {
return fstvalue;
}

public void setFstvalue(String fstvalue) {
this.fstvalue = fstvalue;
}

public String getScndvalue() {
return scndvalue;
}

public void setScndvalue(String scndvalue) {
this.scndvalue = scndvalue;
}


// method which get value from input parameter
public String getValue() {
return value;
}

// method which show the value of input parameter
public void setValue(String value) {
this.value = value;
}

// method which run as default and execute
public String execute() {

BussniessServ serv = new BussniessServ();
setMessag(serv.Addition(fstvalue, scndvalue));
return "hello";
}

// method to show message on jsp page
public String getResult() {

return result;
}

// method for save message
public void setResult(String result) {
this.result = result;
}

}

结果.jsp

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="s" uri="/struts-tags"%>
<!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=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<s:property value="result"/>
</body>
</html>

最佳答案

Struts 使用反射来查找返回该变量的方法。例如,如果您有一个名为 result 的变量,那么 Struts 会查找一个名为 getResult() 的方法并调用它来获取一个值。

此外,如果您希望在 JSP 中访问属性,则必须确保正确命名这些方法。名为“abc”的属性将匹配方法 getAbc()(除非它是 boolean 值,在这种情况下将匹配方法 isAbc())。

关于java - 如何在 struts 2.x 的 jsp 页面上访问私有(private)字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26136335/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com