springboot不打包静态文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot不打包静态文件相关的知识,希望对你有一定的参考价值。

参考技术A file-setting 勾选项目自动构建
2.
使用快捷键 ctrl+ shift+ alt + / 勾选复选框后重启,就可以了. 目前以lib后缀的库有两种,一种为静态链接库(Static Libary,以下简称“静态库”),另一种为动态连接库

SpringBoot整合Ant Design Pro进行部署

一、Ant Design Pro 打包

1.1 运行 build打包

$ npm run build

1.2 将打包生成的静态文件拷贝到spring boot 项目中

构建打包成功之后,会在根目录生成 dist 文件夹,然后将dist 文件夹里的的文件复制到 spring boot 项目的 /src/main/resources/static 目录下

技术图片

二、配置spring boot 项目可访问到static目录下的index.html

2.1 以gradle为例导入spring-boot-starter-thymeleaf

compile group: ‘org.springframework.boot‘, name: ‘spring-boot-starter-thymeleaf‘, version: ‘2.1.5.RELEASE‘

2.2 在application.yml配置文件中配置

#配置html资源路径

spring:
thymeleaf:
prefix: classpath:static/

2.3 在controller配置访问地址

/**

注意:@Controller不是@RestController,使用@RestController会返回“index”字符串

输入地址 http://localhost:8080http://localhost:8080/user/login 都会转发到index.html,从而展示Ant Design Pro页面

2.4 配置spring boot 项目可访问到static目录下的js、css

尝试访问http://localhost:8080/user/login时,发现现在已经能访问到index.html了,但页面报错了,访问不到js和css,错误页面如下:

技术图片

需要配置一下,让js、css等静态资源去static目录下去加载

@Configurationbr/>@EnableWebMvc
public class UseStaticResourceConfig implements WebMvcConfigurer
br/>@Override
public void addResourceHandlers(ResourceHandlerRegistry registry)
registry.addResourceHandler("/**").addResourceLocations("classpath:/static/");

三、整合完成

再次访问http://localhost:8080/user/login 页面显示正常

技术图片

访问http://localhost:8080/console/commodity/product-brand 显示后台界面

技术图片

四、补充2.3

关于2.3,网上有一种思路是这样的:

Ant Design构建完成后只有一个index.html页面和一些js、css文件,当使用browserHistory,如果直接放在Spring Boot的resource/static文件夹下面,当浏览器直接访问或者在非 "/ “,”/index"路径刷新时,由于服务器无法正确响应,会直接触发404报错。

解决思路:浏览器访问任何404错误路径都返回 /index.html文件。剩下的事情交给前端路由

@Controller
public class AntDesignController implements ErrorController
br/>@Override
public String getErrorPath()
return "/error";

@RequestMapping(value = "/error")
public String getIndex()
return "index"; //返回index页面

种方式也能实现效果,但这种方式使得所有的错误请求(404)都会被拦截跳转到index.html ,其实不太严谨,而且给人的感觉是,先让其“出错”,再来“补救”

参考官方文档:Ant Design Pro

以上是关于springboot不打包静态文件的主要内容,如果未能解决你的问题,请参考以下文章

springboot静态资源文件的映射

SpringBoot 打包静态资源和 jar包分离怎么配置?

SpringBoot 打包静态资源和 jar包分离怎么配置?

SpringBoot 打包静态资源和 jar包分离怎么配置?

SpringBoot2.x基础篇:将静态资源打包为WebJars

springboot 静态资源放行安全吗?