vue项目整合到springboot方法

其实方法很简单的,比直接放到tomacat时需要改动assetsPublicPath还简单。。。

 

直接打包,把dist目录下内容全部拷贝到springboot工程目录下的main\resources\static目录下

vue项目整合到springboot方法_第1张图片

 

我这里是thymeleaf,使用的是templates下的模板

@Controller
public class pageController {
    @RequestMapping("/")
    public String index() {
        return "index";
    }
}

跳转到了templates下的index.html

 

所以我们在该index.html下用代码跳转到static下的index.html






 

行了,启动springboot项目,然后浏览器输入:http://127.0.0.1:8080/

自动跳转为:http://127.0.0.1:8080/index.html#/

效果就出来了

你可能感兴趣的:(java,web)