java项目中的代码,用的NUTZ框架,谁能告诉我每一句是什么意思?请详细解释。 5
@At@Ok("jsp:/biz/customerType/view")@Authority(desc="查看客户类别信息")publicObjectview(@Para...
@At
@Ok("jsp:/biz/customerType/view")
@Authority(desc = "查看客户类别信息")
public Object view(@Param("typeId") int typeId) {
Map<String, Object> map = new HashMap<String, Object>();
// 得到用户并获得其可操作部门
log.debug("CustomerTypeId:" + typeId);
CustomerType customerType = customerTypeService.fetch(typeId);
customerType = customerTypeService.dao().fetchLinks(customerType, "operDepts");
map.put("customerType", customerType);
return map;
} 展开
@Ok("jsp:/biz/customerType/view")
@Authority(desc = "查看客户类别信息")
public Object view(@Param("typeId") int typeId) {
Map<String, Object> map = new HashMap<String, Object>();
// 得到用户并获得其可操作部门
log.debug("CustomerTypeId:" + typeId);
CustomerType customerType = customerTypeService.fetch(typeId);
customerType = customerTypeService.dao().fetchLinks(customerType, "operDepts");
map.put("customerType", customerType);
return map;
} 展开
1个回答
展开全部
@at表示这个方法匹配的url为"/view"(同方法名)
@ok表示如果方法正常返回的话,就转到/biz/customerType/view.jsp视图.
@Authority这个我也不知道.
@Param("typeId")表示访问这个url时,要带一个参数typeId
Nutz是国人开发的一款轻量级,简单易用的Java框架啊.只需要导入一个包即可,相比ssh之流真是简单很多.
我以前接触过Nutz,没深入的使用.你可以去Nutz的官网看看,里面有教程.
@ok表示如果方法正常返回的话,就转到/biz/customerType/view.jsp视图.
@Authority这个我也不知道.
@Param("typeId")表示访问这个url时,要带一个参数typeId
Nutz是国人开发的一款轻量级,简单易用的Java框架啊.只需要导入一个包即可,相比ssh之流真是简单很多.
我以前接触过Nutz,没深入的使用.你可以去Nutz的官网看看,里面有教程.
追问
基础不好,连教程都看不懂。
追答
如果你有springmvc的基础的话,这部分还是很容易懂的.道理都差不多.
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询