|
@@ -6,11 +6,13 @@ import ieven.server.webapp.service.user.UserService;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
import org.springframework.web.bind.annotation.PostMapping;
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
import org.springframework.web.bind.annotation.RequestBody;
|
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
import javax.servlet.http.HttpSession;
|
|
import javax.servlet.http.HttpSession;
|
|
|
|
|
|
@RestController
|
|
@RestController
|
|
|
|
+@RequestMapping("user")
|
|
public class UserController {
|
|
public class UserController {
|
|
@Autowired UserService userService;
|
|
@Autowired UserService userService;
|
|
/**
|
|
/**
|