struts2使用註解 ACTION中的應用

2022-06-01 06:45:06 字數 742 閱讀 6247

1.在類中指定包:@parentpackage("system").其中system是在struts.xml中定義的包名。

2.配置檔案--->註解

2.1配置檔案方式(返回json):

userlists

2.2註解方式(返回json):

@action(value="loadusertree",

results=)})

2.3配置檔案方式:

/main/tool/mobilecode.jsp

2.4註解方式

@action(value="getmobilecode",

results=)

2.5多個action同時使用乙個方法的配置:

不同功能頁面的userquery.action和userqueryforstaffmsg.action同時對應方法userquery.

// 根據條件,搜尋使用者

@actions(value=),

@action(value="userqueryforstaffmsg",

results=)

})public string userquery()

注:需要引入包struts2-convention-plugin.jar

struts2 註解 同時 使用

這幾天遇到乙個問題 新專案需要struts2 hibernate spring 整合專案 老大要求 struts2需要使用的方式 不使用註解 鼓搗了2天 發現我犯了個大錯誤 上解決方案 1.整合全註解 這個就不多說了 參照此鏈結可完成大部分 剩下的 少什麼包自己再加吧 暫時 沒有時間發自己的 upd...

Struts2註解使用說明

1 struts2註解的作用 使用註解可以用來替換struts.xml配置檔案!2 導包 必須匯入struts2 convention plugin 2.3.15.jar包,它在struts2安裝包下lib目錄中。3 通過配置檔案學習對應的註解 action來代替元素!lstring value 指...

Struts2註解使用說明

struts2註解 1 struts2註解的作用 使用註解可以用來替換struts.xml配置檔案!2 導包 必須匯入struts2 convention plugin 2.3.15.jar包,它在struts2安裝包下lib目錄中。3 通過配置檔案學習對應的註解 action來代替元素!l str...