当前位置: 代码迷 >> JavaScript >> struts2 整合json中的有关问题
  详细解决方案

struts2 整合json中的有关问题

热度:265   发布时间:2012-10-25 10:58:57.0
struts2 整合json中的问题

?

在jquery ajax 和struts2整合过程中,为了控制json返回,可以使用@json来制定那些字段可以返回。。
?@JSON(serialize=true)
?public int getScore() {
??return score;
?}

?public void setScore(int score) {
??this.score = score;
?}
?@JSON(serialize=false)
?public String getOldPhonePwd() {
??return oldPhonePwd;
?}

  相关解决方案