struts2結合ajax相應的資料的三種方式:
利用servlet api直接輸出
stream型別的result
@json註解
1.預設情況下以get方法開頭的都會序列化,如果不想序列化,在action中的方法要打上註解 @json(serialize=false)。
2.如果在屬性get方法上面加 @json(name="newname"),則返回的json資料中key是指定的新名稱。
3. @json(format ="yyyy-mm-dd't'hh:mm:ss")設定用於格式化json資料中的日期。
4. @json(deserialize=true)設定是否反序列化該屬性。
struts2學習總結
struts.properties配置 struts.properties檔案在web inf classes目錄下存放。這個檔案用來配置struts2系統的一些基本規約,所有在struts.properties中配置的內容都可以在struts.xml中配置,或者web.xml中在struts2 f...
寶寶Struts2學習總結
success.jsp fail.jsp global a2 methodtest add.jsp methodtest update.jsp methodtest delete.jsp methodtest add.jsp methodtest update.jsp user.jsp a2 suc...
struts2框架學習總結
一 struts2的作用 實現檢視和請求分開 二 在瀏覽器中任意輸入後面路徑的位址時,為了防止找不到頁面或出現錯誤,則可以設定乙個預設頁面,比如首頁,可以在 struts.xml中配置 default action ref name index default action ref action n...