Spring Boot - RequestMapping在RestController中不起作用

时间:2016-02-17 12:12:07

标签: java spring spring-mvc spring-boot

我正在构建Rest登录服务但是当我尝试访问登录页面时,我得到了这个:

{
  "_links" : {
    "self" : {
      "href" : "http://localhost:8080/profile"
    }
  }
}

RestController代码非常简单

@RestController
public class MainController {

private VoterAcces voterAccess;

@RequestMapping("/")
public String landing() {
    return "Landing page por Voters System";
}

@RequestMapping(value = "/user", method = RequestMethod.POST)
@ResponseBody
public Object getVI(@RequestBody UserInfo userInfo) {
    return this.voterAccess.getUser(userInfo.getEmail(), userInfo.getPassword());

}

我不确定为什么我得到那个而不是字符串“Landing page por Voters System”

1 个答案:

答案 0 :(得分:0)

尝试关闭静态资源处理:

line-height

可以在properties section of Spring Boot找到更多信息。