This question shows research effort; it is useful and clear
1
This question does not show any research effort; it is unclear or not useful
Bookmark this question.
Show activity on this post.
有没有像 JPA 这样的框架使 servlet 请求参数自动映射到对象?
前任 :
class Object1 {
String name;
int count;
Set<Object2> oset;
}
class Object2 {
String name;
int num;
}
Object1 o = Xframework.doBind(request, Object1.class);