刚接触springboot项目,demo跑起来,可是就是访问不到。。
根据网上查资料,慢慢排除问题。
一、controller类必须是Application的所在包的类或者子包的类。
官网那边说明是,程序只加载Application.java所在包及其子包下的内容。
二、静态资源的配置
springboot 在未配置访问静态资源的情况下,会默认到 templates 文件夹下找index页面。。
spring.mvc.static-path-pattern=/**
这个意思是,要访问静态资源映射的路径。直接访问端口就可以。
如果配成
spring.mvc.static-path-pattern=/static/**
要路径加上static 以及index.html才可正常访问,不然一样报Whitelabel Error Page 问题
spring.resources.static-locations=classpath:/templates/,classpath:/static/page
这个配置项是告诉springboot去哪找资源。上面配置优先级的话 /templates会高于/static/page
我的项目的静态页面是放在static下面,如果不配就会报404.。