spring mvc如何在jsp页面和后台control之间实现集合对象的绑定? 10
User类:PublicclassUser{PrivateIntegerid;PrivateStringusername;PrivateStringpassword;Pr...
User类:
Public class User{
Private Integer id;
Private String username;
Private String password;
Private Set<Role> roles=new HashSet<Role>();
...
Get set
...
}
Role类:
Public class Role{
Private Integer id;
Private String rolename;
Private Set<User> users=new HashSet<User>();
...
Get set
...
}
注:
用户类(User)与角色类(Role)为多对多关系
Spring+hibernate+spring mvc
其中model,dao,service层均已实现,控制器是实现了SimpleFormController的类。在控制器与视图整合时出现一些问题。具体如下:
添加新用户时,如果是不包括角色的普通用户时添加成功,加上角色时数据不能绑定。
角色是可选项,可有可无,也就是角色数量不确定。
User.roles属性是Set类型,如何在jsp页面体现? 后台controller如何获取提交上来的角色信息,并赋值给user.roles属性?这其中实现原理是什么?是否要用到自定义的类型转换?
换一种说法就是:
如何在jsp页面和后台control之间实现集合对象的绑定?
在网上也找了很多资料,还是找不到合适的。望大家不吝赐教!小弟不胜感激。
自已已经实现。方法可能有点麻烦。故且这样吧。有需要源码的朋友请Q我:63800849 展开
Public class User{
Private Integer id;
Private String username;
Private String password;
Private Set<Role> roles=new HashSet<Role>();
...
Get set
...
}
Role类:
Public class Role{
Private Integer id;
Private String rolename;
Private Set<User> users=new HashSet<User>();
...
Get set
...
}
注:
用户类(User)与角色类(Role)为多对多关系
Spring+hibernate+spring mvc
其中model,dao,service层均已实现,控制器是实现了SimpleFormController的类。在控制器与视图整合时出现一些问题。具体如下:
添加新用户时,如果是不包括角色的普通用户时添加成功,加上角色时数据不能绑定。
角色是可选项,可有可无,也就是角色数量不确定。
User.roles属性是Set类型,如何在jsp页面体现? 后台controller如何获取提交上来的角色信息,并赋值给user.roles属性?这其中实现原理是什么?是否要用到自定义的类型转换?
换一种说法就是:
如何在jsp页面和后台control之间实现集合对象的绑定?
在网上也找了很多资料,还是找不到合适的。望大家不吝赐教!小弟不胜感激。
自已已经实现。方法可能有点麻烦。故且这样吧。有需要源码的朋友请Q我:63800849 展开
3个回答
展开全部
我也遇到相同的问题.我是这么解决的.
在Controller中添加@InitBinder方法:
/*
* 分配资源,权限放进Role的List<Permit>
*/
@InitBinder
public void initBinder(final WebDataBinder binder) {
binder.registerCustomEditor(Permit.class, new CustomEditor());
}
再实现CustomEditor
public class CustomEditor extends PropertyEditorSupport{
public void setAsText(String text) {
Permit permit = new Permit();
permit.setPermitId(Long.parseLong(text));
//you have to create a FieldValue object from the string text
//which is the one which comes from the form
//and then setting the value with setValue() method
setValue(permit);
}
}
注:registerCustomEditor方法第一个参数是集合中的类型.即你User中Set<Role>的Role.
不好的地方是,页面每次的请求都会执行@InitBinder方法.
在Controller中添加@InitBinder方法:
/*
* 分配资源,权限放进Role的List<Permit>
*/
@InitBinder
public void initBinder(final WebDataBinder binder) {
binder.registerCustomEditor(Permit.class, new CustomEditor());
}
再实现CustomEditor
public class CustomEditor extends PropertyEditorSupport{
public void setAsText(String text) {
Permit permit = new Permit();
permit.setPermitId(Long.parseLong(text));
//you have to create a FieldValue object from the string text
//which is the one which comes from the form
//and then setting the value with setValue() method
setValue(permit);
}
}
注:registerCustomEditor方法第一个参数是集合中的类型.即你User中Set<Role>的Role.
不好的地方是,页面每次的请求都会执行@InitBinder方法.
展开全部
其实你可以用list替换set,而且list还是有序的;
至于数据如何绑定我觉得你可以在action中用数组接收
至于数据如何绑定我觉得你可以在action中用数组接收
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
换用struts MVC吧,struts 99%的项目都会用。
追问
struts虽然很好,但这也不是换用它的原因。我也是从struts走过来的。谢谢你。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询