本月博客排行
年度博客排行
-
第1名
宏天软件 -
第2名
青否云后端云 -
第3名
龙儿筝 - gashero
- wallimn
- vipbooks
- wy_19921005
- benladeng5225
- fantaxy025025
- e_e
- zysnba
- ssydxa219
- sam123456gz
- javashop
- arpenker
- tanling8334
- kaizi1992
- xpenxpen
- xiangjie88
- wiseboyloves
- ranbuijj
- ganxueyun
- sichunli_030
- xyuma
- wangchen.ily
- lemonhandsome
- jh108020
- zxq_2017
- jbosscn
- Xeden
- luxurioust
- zhanjia
- lzyfn123
- forestqqqq
- ajinn
- nychen2000
- wjianwei666
- daizj
- hanbaohong
- 喧嚣求静
- johnsmith9th
- silverend
- kingwell.leng
- lchb139128
- kristy_yy
- lich0079
- jveqi
- java-007
- sunj
- yeluowuhen
最新文章列表
Struts2 Result(十四)
1.result属性
业务控制器Action负责处理用户的请求,但是他不能提供对用户的直接影响,当Action处理完请求信息后,需要根据Result结果配置,将action的处理结果对应相应的视图。
使用Result元素的映射结果标准配置形式如下:
<action name="addBook" class="action.AddBook& ...
struts2之全局结果
配置全局结果,struts.xml:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE struts PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
"htt ...
Struts.xml global-results
<global-results>
<result name="otherPage">/other.jsp</result>
</global-results>
作为公用的页面跳转,不用每一个action都配置。