静态页面 spring boot项目只有src目录,没有webapp目录,会将静态访问(html/图片等)映射到其自动配置的静态目录,如下 /static /public /resources /META-INF/resources 在resources建立一个static目录和index.html静态文件,访问地址就是 http://localhost:8080/index.html 动态页面 动态页面需要先请求服务器,访问后台应用程序,然后再转向到页面,比如访问jsp,spring boot