2018-05-21spring boot返回视图只有string字符串却没有view

1,在使用thymeleaf最简单返回视图是 只有string字符串却没有视图

控制器中使用这个方法

@RequestMapping("/successview")

public Stringsuccess() {

return "success";

}

错误原因:

1,在此方法上添加了@RequestMapping注解

2,在类上使用了 @Restcontroller注解

直接删除方法上@RequestMapping注解和修改@Restcontroller为@controller

你可能感兴趣的:(2018-05-21spring boot返回视图只有string字符串却没有view)