14 lines
312 B
Java
14 lines
312 B
Java
package org.ros.chatto.controller;
|
|
|
|
import org.springframework.stereotype.Controller;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
@Controller
|
|
@RequestMapping("/user")
|
|
public class UserController {
|
|
|
|
@RequestMapping
|
|
public String viewUserProfile() {
|
|
return "user/home";
|
|
}
|
|
} |