Package org.g4studio.core.metatype.impl

Examples of org.g4studio.core.metatype.impl.BaseDto.toJson()


    if (password.equals(userInfoVo.getPassword())) {
      outDto.put("flag", G4Constants.SUCCESS);
    }else {
      outDto.put("flag", G4Constants.FAILURE);
    }
    write(outDto.toJson(), response);
    return mapping.findForward(null);
  }

}
View Full Code Here


      //todo anything what u want
    }
    Dto outDto = new BaseDto();
    outDto.put("success", new Boolean(true));
    outDto.put("msg", "数据已提交到后台,但演示程序没有将其持久化到数据库.<br>" + request.getParameter("dirtydata"));
    super.write(outDto.toJson(), response);
    return mapping.findForward(null);
  }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.