我已经尝试了与stackoverflow中的问题相关的答案。它没有成功。
这是我的项目结构:
控制器:呈现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错误页面
我错过了什么吗?
答案 0 :(得分:0)
在浏览器控制台中检查错误。可以将“ X-Frame-Options”设置为“ DENY”,这可能会阻止html页面加载到浏览器中。
此How to disable 'X-Frame-Options' response header in Spring Security?可能会有帮助。
答案 1 :(得分:-3)
我认为你不应该返回String。请尝试使用类似ModelAndView
的内容。