码迷,mamicode.com
首页 > 编程语言 > 详细

SpringBoot整合Ant Design Pro进行部署

时间:2019-07-13 21:27:14      阅读:1541      评论:0      收藏:0      [点我收藏+]

标签:静态   ase   部署   yml   mod   turn   解决   lease   gis   

一、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整合Ant Design Pro进行部署

标签:静态   ase   部署   yml   mod   turn   解决   lease   gis   

原文地址:https://blog.51cto.com/14445579/2419907

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!