struts2和spring mvc,孰优孰劣

最近我在将APDPlat升级到Java8,发现最新版本的struts2不支持Java8,同时由于之前有很多的同学希望我把APDPlat的struts2替换为spring mvc,所以我就决定试试看。本文我们看两个转换前后的例子:

1、下拉列表服务,此类比较简单,只涉及一个方法store:

使用struts2:

01 @Scope("prototype")
02 @Controller
03 @Namespace("/dictionary")
04 public class DicAction extends ExtJSSimpleAction<Dic> {
05     @Resource
06     private DicService dicService;
07     private String dic;
08     private String tree;
09     private boolean justCode;
10      
11     /**
12      
13      * 此类用来提供下拉列表服务,主要有两种下列类型:
14      * 1、普通下拉选项
15      * 2、树形下拉选项
16      * @return 不需要返回值,直接给客户端写数据
17      
18      */
19     public String store(){
20         Dic dictionary=dicService.getDic(dic);
21         if(dictionary==null){
22             LOG.info("没有找到数据词典 "+dic);
23             return null;
24         }
25         if("true".equals(tree)){
26             String json = dicService.toStoreJson(dictionary);
27             Struts2Utils.renderJson(json);
28         }else{
29             List<Map<String,String>> data=new ArrayList<>();
30             for(DicItem item : dictionary.getDicItems()){
31                 Map<String,String> map=new HashMap<>();
32                 if(justCode){
33                     map.put("value", item.getCode());
34                 }else{
35                     map.put("value", item.getId().toString());
36                 }
37                 map.put("text", item.getName());
38                 data.add(map);
39             }
40             Struts2Utils.renderJson(data);
41         }
42         return null;
43     }
44  
45     public void setJustCode(boolean justCode) {
46         this.justCode = justCode;
47     }
48  
49     public void setTree(String tree) {
50         this.tree = tree;
51     }
52  
53     public void setDic(String dic) {
54         this.dic = dic;
55     }
56 }

使用spring mvc:

01 @Scope("prototype")
02 @Controller
03 @RequestMapping("/dictionary")
04 public class DicAction extends ExtJSSimpleAction<Dic> {
05     @Resource
06     private DicService dicService;
07      
08     /**
09      
10      * 此类用来提供下拉列表服务,主要有两种下拉类型:
11      * 1、普通下拉选项
12      * 2、树形下拉选项
13      * @param dic
14      * @param tree
15      * @param justCode
16      * @return 返回值直接给客户端
17      */
18     @ResponseBody
19     @RequestMapping("/dic!store.action")
20     public String store(@RequestParam(required=false) String dic,
21                         @RequestParam(required=false) String tree,
22                         @RequestParam(required=false) String justCode){
23         Dic dictionary=dicService.getDic(dic);
24         if(dictionary==null){
25             LOG.info("没有找到数据词典 "+dic);
26             return "";
27         }
28         if("true".equals(tree)){
29             String json = dicService.toStoreJson(dictionary);
30             return json;
31         }else{
32             List<Map<String,String>> data=new ArrayList<>();
33             dictionary.getDicItems().forEach(item -> {
34                 Map<String,String> itemMap=new HashMap<>();
35                 if("true".equals(justCode)){
36                     itemMap.put("value", item.getCode());
37                 }else{
38                     itemMap.put("value", item.getId().toString());
39                 }
40                 itemMap.put("text", item.getName());
41                 data.add(itemMap);
42             });
43             String json = JSONArray.fromObject(data).toString();
44             return json;
45         }
46     }
47 }


从上面我们可以看到,struts2和spring mvc的区别非常明显,struts2使用原型,spring mvc使用单例。

单例一定比原型快吗?创建一个对象的开销可以忽略吗?这个问题需要在自己的场景中考虑,不过大多时候我们是可以忽略的。

APDPlat之前使用struts2,每一个请求都会对应一个全新的Action,所以请求的参数就可以作为Action的字段来自动注入,言下之意就是Action中的所有方法都可以共用字段,而现在换成spring mvc了,不同的方法需要各自获取请求中的参数。

对比以上代码,我个人还是认为spring mvc的方式更好一些,对于Action(spring mvc叫Controller)来说,单例、无状态是比较理想的。


2、数据字典服务,此类比较复杂,涉及的方法有create、delete、updatePart、retrieve、query、store

使用struts2:

01 @Scope("prototype")
02 @Controller
03 @Namespace("/dictionary")
04 public class DicItemAction extends ExtJSSimpleAction<DicItem> {
05     @Resource
06     private DicService dicService;
07     private String node;
08  
09     /**
10      * 返回数据字典目录树
11      * @return 
12      */
13     public String store() {
14         if (node == null) {
15             return null;
16         }
17         Dic dic=null;
18         if(node.trim().startsWith("root")){
19             dic = dicService.getRootDic();
20         }else{
21             int id=Integer.parseInt(node);
22             dic = dicService.getDic(id);
23         }
24          
25         if (dic != null) {
26             String json = dicService.toJson(dic);
27             Struts2Utils.renderJson(json);
28         }
29         return null;
30     }
31  
32     public void setNode(String node) {
33         this.node = node;
34     }
35 }

使用spring mvc:

01 @Scope("prototype")
02 @Controller
03 @RequestMapping("/dictionary")
04 public class DicItemAction extends ExtJSSimpleAction<DicItem> {
05     @Resource
06     private DicService dicService;
07  
08     /**
09      * 返回数据字典目录树
10      * @param node
11      * @return 
12      */
13     @ResponseBody
14     @RequestMapping("/dic-item!store.action")
15     public String store(@RequestParam(required=false) String node) {
16         if (node == null) {
17             return "[]";
18         }
19         Dic dic=null;
20         if(node.trim().startsWith("root")){
21             dic = dicService.getRootDic();
22         }else{
23             int id=Integer.parseInt(node);
24             dic = dicService.getDic(id);
25         }
26          
27         if (dic != null) {
28             String json = dicService.toJson(dic);
29             return json;
30         }
31         return "[]";
32     }
33     @ResponseBody
34     @RequestMapping("/dic-item!query.action")
35     public String query(@RequestParam(required=false) Integer start,
36                         @RequestParam(required=false) Integer limit,
37                         @RequestParam(required=false) String propertyCriteria,
38                         @RequestParam(required=false) String orderCriteria,
39                         @RequestParam(required=false) String queryString,
40                         @RequestParam(required=false) String search){
41         super.setStart(start);
42         super.setLimit(limit);
43         super.setPropertyCriteria(propertyCriteria);
44         super.setOrderCriteria(orderCriteria);
45

你可能感兴趣的:(struts2和spring mvc,孰优孰劣)