Index: .idea/artifacts/web_war_exploded.xml =================================================================== diff -u -r846271eb6b8794fc8fd865300fe360771687f811 -r2330ab7e5451576b7edf076ca2c0fcb4ffdd5bdc --- .idea/artifacts/web_war_exploded.xml (.../web_war_exploded.xml) (revision 846271eb6b8794fc8fd865300fe360771687f811) +++ .idea/artifacts/web_war_exploded.xml (.../web_war_exploded.xml) (revision 2330ab7e5451576b7edf076ca2c0fcb4ffdd5bdc) @@ -131,7 +131,8 @@ - + + Index: .idea/libraries/Maven__com_fasterxml_classmate_1_1_0.xml =================================================================== diff -u --- .idea/libraries/Maven__com_fasterxml_classmate_1_1_0.xml (revision 0) +++ .idea/libraries/Maven__com_fasterxml_classmate_1_1_0.xml (revision 2330ab7e5451576b7edf076ca2c0fcb4ffdd5bdc) @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file FishEye: Tag 2330ab7e5451576b7edf076ca2c0fcb4ffdd5bdc refers to a dead (removed) revision in file `.idea/libraries/Maven__org_hibernate_hibernate_validator_4_3_2_Final.xml'. FishEye: No comparison available. Pass `N' to diff? Index: .idea/libraries/Maven__org_hibernate_hibernate_validator_5_2_4_Final.xml =================================================================== diff -u --- .idea/libraries/Maven__org_hibernate_hibernate_validator_5_2_4_Final.xml (revision 0) +++ .idea/libraries/Maven__org_hibernate_hibernate_validator_5_2_4_Final.xml (revision 2330ab7e5451576b7edf076ca2c0fcb4ffdd5bdc) @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file Index: standard/project/support/pom.xml =================================================================== diff -u -r846271eb6b8794fc8fd865300fe360771687f811 -r2330ab7e5451576b7edf076ca2c0fcb4ffdd5bdc --- standard/project/support/pom.xml (.../pom.xml) (revision 846271eb6b8794fc8fd865300fe360771687f811) +++ standard/project/support/pom.xml (.../pom.xml) (revision 2330ab7e5451576b7edf076ca2c0fcb4ffdd5bdc) @@ -531,9 +531,10 @@ org.hibernate hibernate-validator - 4.3.2.Final + 5.2.4.Final + org.hibernate hibernate-ehcache Index: standard/project/support/support.iml =================================================================== diff -u -r846271eb6b8794fc8fd865300fe360771687f811 -r2330ab7e5451576b7edf076ca2c0fcb4ffdd5bdc --- standard/project/support/support.iml (.../support.iml) (revision 846271eb6b8794fc8fd865300fe360771687f811) +++ standard/project/support/support.iml (.../support.iml) (revision 2330ab7e5451576b7edf076ca2c0fcb4ffdd5bdc) @@ -129,7 +129,8 @@ - + + Index: standard/project/web/src/main/java/egovframework/com/ext/jstree/support/security/controller/RegistrationController.java =================================================================== diff -u -rea3855e268c8ddec2ae620e3ae931f2940ff63dc -r2330ab7e5451576b7edf076ca2c0fcb4ffdd5bdc --- standard/project/web/src/main/java/egovframework/com/ext/jstree/support/security/controller/RegistrationController.java (.../RegistrationController.java) (revision ea3855e268c8ddec2ae620e3ae931f2940ff63dc) +++ standard/project/web/src/main/java/egovframework/com/ext/jstree/support/security/controller/RegistrationController.java (.../RegistrationController.java) (revision 2330ab7e5451576b7edf076ca2c0fcb4ffdd5bdc) @@ -25,20 +25,17 @@ @Autowired private UserService userService; - @RequestMapping(value = "/signup", method = { RequestMethod.GET, RequestMethod.POST }) + @RequestMapping(value = "/signup", method = RequestMethod.GET) public ModelAndView signup(HttpServletRequest request, HttpServletResponse response) throws ServletException,IOException { ModelAndView model = new ModelAndView(); model.addObject("title", "User Registration Form"); model.setViewName("egovframework/com/ext/jstree/support/security/registration"); return model; } - @RequestMapping(value = {"/user/register"}, method = { RequestMethod.GET, RequestMethod.POST }, consumes = "application/json", produces = "application/json") + @RequestMapping(value = {"/user/register"}, method = RequestMethod.POST, consumes = "application/json", produces = "application/json") public @ResponseBody String registerUser(@RequestBody UserRegistrationForm registrationForm) throws UserAlreadyExistAuthenticationException { - String mailStr = registrationForm.getEmail(); - System.out.print(mailStr); - if (registrationForm.getUserId() == null) { registrationForm.setUserId(registrationForm.getUserId()); } Index: standard/project/web/src/main/webapp/WEB-INF/config/egovframework/springmvc/egov-com-servlet.xml =================================================================== diff -u -r29fd864ddfe9ed46b56befbfdb21e46913b2043e -r2330ab7e5451576b7edf076ca2c0fcb4ffdd5bdc --- standard/project/web/src/main/webapp/WEB-INF/config/egovframework/springmvc/egov-com-servlet.xml (.../egov-com-servlet.xml) (revision 29fd864ddfe9ed46b56befbfdb21e46913b2043e) +++ standard/project/web/src/main/webapp/WEB-INF/config/egovframework/springmvc/egov-com-servlet.xml (.../egov-com-servlet.xml) (revision 2330ab7e5451576b7edf076ca2c0fcb4ffdd5bdc) @@ -7,6 +7,7 @@ http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd"> + @@ -78,6 +79,12 @@ + + + text/html;charset=UTF-8 + application/json;charset=UTF-8 + + Index: standard/project/web/src/main/webapp/WEB-INF/jsp/egovframework/com/ext/jstree/support/security/registration.jsp =================================================================== diff -u -rea3855e268c8ddec2ae620e3ae931f2940ff63dc -r2330ab7e5451576b7edf076ca2c0fcb4ffdd5bdc --- standard/project/web/src/main/webapp/WEB-INF/jsp/egovframework/com/ext/jstree/support/security/registration.jsp (.../registration.jsp) (revision ea3855e268c8ddec2ae620e3ae931f2940ff63dc) +++ standard/project/web/src/main/webapp/WEB-INF/jsp/egovframework/com/ext/jstree/support/security/registration.jsp (.../registration.jsp) (revision 2330ab7e5451576b7edf076ca2c0fcb4ffdd5bdc) @@ -5,7 +5,6 @@ <%@ taglib prefix="sql" uri="http://java.sun.com/jsp/jstl/sql"%> <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%> <%@ taglib prefix="x" uri="http://java.sun.com/jsp/jstl/xml"%> - @@ -17,116 +16,103 @@

${title}


-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
UserId
EmailId
FirstName
LastName
Phone Number
Password
Confirm Password
- - - -
-
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
UserId
EmailId
FirstName
LastName
Phone Number
Password
Confirm Password
+ + +
+
Index: standard/project/web/web.iml =================================================================== diff -u -r39d103ddf2b12809cdaf82823eb7a795f49e584c -r2330ab7e5451576b7edf076ca2c0fcb4ffdd5bdc --- standard/project/web/web.iml (.../web.iml) (revision 39d103ddf2b12809cdaf82823eb7a795f49e584c) +++ standard/project/web/web.iml (.../web.iml) (revision 2330ab7e5451576b7edf076ca2c0fcb4ffdd5bdc) @@ -149,7 +149,8 @@ - + +