Whitelabel Error Page -----This application has no explicit mapping for /error, so you are seeing th

出现这个异常说明了跳转页面的url没有对应的值:

第一点:

  Application启动类的位置不对.要将Application类放在最外侧,即包含所有子包 

  原因:spring-boot会自动加载启动类所在包下及其子包下的所有组件.

第二点:

  在springboot的配置文件:application.yml或application.properties中关于视图解析器的配置问题: 

  当pom文件下的spring-boot-starter-paren版本高的时候使用: 

    spring.mvc.view.prefix  /   spring.mvc.view.suffix 

  当pom文件下的spring-boot-starter-paren版本低的时侯使用: 

    spring.view.prefix   /    spring.view.suffix

第三点:

  控制器的URL路径书写问题 
    @RequestMapping(“xxxxxxxxxxxxxx”) 
    实际访问的路径与”xxx”不符合.

如果使用的shiro框架:其第三点配置

#暴露session的属性
spring.freemarker.expose-session-attributes=true
#配置为传统模式,空白值的处理
spring.freemarker.settings.classic_compatible=true
#重新指定模板文件后缀 springboot 2.2.x 后 默认后缀为 .ftlh
spring.freemarker.suffix=.ftl
spring.freemarker.template-loader-path=classpath:/templates/
上一篇:spring-data-redis 动态切换数据源


下一篇:ValueError: shapes (3,3) and (0,) not aligned: 3 (dim 1)