Spring boot - 不呈现登陆(index.html)页面?

时间:2018-02-14 10:26:40

标签: java spring spring-boot

我已经尝试了与stackoverflow中的问题相关的答案。它没有成功。

这是我的项目结构:

enter image description here

控制器:呈现index.html

@Controller
public class MainController {

    @RequestMapping(value="/",method = RequestMethod.GET)
    public String homepage(){
        System.out.println("Inside controller..");
        return "index";
    }
}

当我试图点击URL时,它会打印Inside controller..但不会呈现index页面。也尝试使用WebMvcConfigurerAdapter

在浏览器中,它会显示一些错误,例如 Whitelabel错误页面

我错过了什么吗?

2 个答案:

答案 0 :(得分:0)

在浏览器控制台中检查错误。可以将“ X-Frame-Options”设置为“ DENY”,这可能会阻止html页面加载到浏览器中。

How to disable 'X-Frame-Options' response header in Spring Security?可能会有帮助。

答案 1 :(得分:-3)

我认为你不应该返回String。请尝试使用类似ModelAndView的内容。