struts2之訪問或新增屬性

2021-06-18 08:13:22 字數 575 閱讀 4235

action中

public string execute()

struts.xml檔案

/web-inf/page/message.jsp

訪問路徑:

結果:session範圍

request範圍

如果想要得到站點目錄下的某乙個檔案的路徑就需要得到request物件【request.getrealpath(arg0);】,那麼該怎麼辦呢?

方法一: 通過servletactioncontext.類直接獲取:

例項2:action中

public string rsa() throws exception

配置檔案struts.xml中

/web-inf/page/message.jsp

jsp頁面

結果:會話範圍屬性

請求範圍屬性

方法二:實現指定介面,由struts框架執行時注入

複習struts2之訪問或新增屬性

action中 public string execute struts.xml檔案 web inf page message.jsp 訪問路徑 結果 session範圍 request範圍 如果想要得到站點目錄下的某乙個檔案的路徑就需要得到request物件 request.getrealpath...

Struts2訪問或者新增request等屬性

我們知道,在servlet中,我們可以直接獲得request,response,servletcontext等值,但是在struts中如何獲得並且向這些域裡面放入值呢,下面來說一下 首先是分別向request,session,servletcontext放入屬性 actioncontext act ...

Struts2訪問或者新增request等屬性

我們知道,在servlet中,我們可以直接獲得request,response,servletcontext等值,但是在struts中如何獲得並且向這些域裡面放入值呢,下面來說一下 首先是分別向request,session,servletcontext放入屬性 引用,並且呼叫put方法分別向這三個...