Index: core-module/pom.xml
===================================================================
diff -u -r3c51cae39631a29e0d277a0e16d85f03b0951ef8 -r1cd22bb9aa36d49aa9e9aff26652f220fe3ea391
--- core-module/pom.xml (.../pom.xml) (revision 3c51cae39631a29e0d277a0e16d85f03b0951ef8)
+++ core-module/pom.xml (.../pom.xml) (revision 1cd22bb9aa36d49aa9e9aff26652f220fe3ea391)
@@ -7,7 +7,7 @@
313devgrp
jstree-project
- 19.07.17
+ 19.07.18
../pom.xml
Index: core-module/src/main/java/egovframework/com/ext/jstree/support/security/controller/RegistrationController.java
===================================================================
diff -u -r3c51cae39631a29e0d277a0e16d85f03b0951ef8 -r1cd22bb9aa36d49aa9e9aff26652f220fe3ea391
--- core-module/src/main/java/egovframework/com/ext/jstree/support/security/controller/RegistrationController.java (.../RegistrationController.java) (revision 3c51cae39631a29e0d277a0e16d85f03b0951ef8)
+++ core-module/src/main/java/egovframework/com/ext/jstree/support/security/controller/RegistrationController.java (.../RegistrationController.java) (revision 1cd22bb9aa36d49aa9e9aff26652f220fe3ea391)
@@ -21,20 +21,16 @@
@Autowired
private UserService userService;
- @ResponseBody
- @RequestMapping(value = {"/services/user/register"}, consumes = "application/json", produces = "application/json")
- public ModelAndView registerUser(@RequestBody UserRegistrationForm registrationForm) throws UserAlreadyExistAuthenticationException {
+ @RequestMapping(value = {"/user/register"}, method = RequestMethod.POST, consumes = "application/json", produces = "application/json")
+ public @ResponseBody String registerUser(@RequestBody UserRegistrationForm registrationForm) throws UserAlreadyExistAuthenticationException {
if (registrationForm.getUserId() == null) {
registrationForm.setUserId(registrationForm.getUserId());
}
LocalUser localUser = (LocalUser) userService.registerNewUser(registrationForm);
- ModelAndView modelAndView = new ModelAndView("jsonView");
- modelAndView.addObject("result", "success");
- return modelAndView;
+ return "success";
-
}
}
Index: lib-module/pom.xml
===================================================================
diff -u -rdc69c40969331bd45cc55055f4fa4dcf4434aa7a -r1cd22bb9aa36d49aa9e9aff26652f220fe3ea391
--- lib-module/pom.xml (.../pom.xml) (revision dc69c40969331bd45cc55055f4fa4dcf4434aa7a)
+++ lib-module/pom.xml (.../pom.xml) (revision 1cd22bb9aa36d49aa9e9aff26652f220fe3ea391)
@@ -5,7 +5,7 @@
313devgrp
jstree-project
- 19.07.17
+ 19.07.18
../pom.xml
Index: pom.xml
===================================================================
diff -u -r3c51cae39631a29e0d277a0e16d85f03b0951ef8 -r1cd22bb9aa36d49aa9e9aff26652f220fe3ea391
--- pom.xml (.../pom.xml) (revision 3c51cae39631a29e0d277a0e16d85f03b0951ef8)
+++ pom.xml (.../pom.xml) (revision 1cd22bb9aa36d49aa9e9aff26652f220fe3ea391)
@@ -10,7 +10,7 @@
4.0.0
313devgrp
jstree-project
- 19.07.17
+ 19.07.18
pom
jstree-project