ruoyi前后端分离vue打包部署发布

1 篇文章 0 订阅

说明:打包使用的方式是把vue打包成dist文件后,放到若依的“ruoyi_admin”的静态文件模块下面,访问“http://localhost:9070/(端口“9070”是我自定义的)”即可!

步骤:

1、先打包vue后台管理系统

        在若依项目的目录cmd输入命令:npm run build:prod

2、拿到打包后的dist文件,放到“ruoyi_admin”模块的“resources”下面新建“static”和“templates”

  

 3、文件配置完后,配置跳转路径

上面的代码:

.antMatchers("/static/**").permitAll()//static
.antMatchers("/index/**").permitAll()//static

上面的代码块:

package com.ruoyi.web.controller.system;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import com.ruoyi.common.config.RuoYiConfig;

/**
 * 首页
 *
 * @author ruoyi
 */
//@RestController
@Controller
public class SysIndexController
{
    /** 系统基础配置 */
    @Autowired
    private RuoYiConfig ruoyiConfig;

    /**
     * 访问首页,提示语
     */
    @RequestMapping(value = "/",method = RequestMethod.GET)
    public String index()
    {
        //return StringUtils.format("欢迎使用{}后台管理框架,当前版本:v{},请通过前端地址访问。", ruoyiConfig.getName(), ruoyiConfig.getVersion());
        return "index";
    }

    /**
     * 访问首页,提示语
     */
    @RequestMapping(value = "/index",method = RequestMethod.GET)
    public String indexs()
    {
        return "index";
    }
}

 yml配置:

spring:
  mvc:
    view:
      suffix: .html
    static-path-pattern: /**
  resources:
    static-locations: classpath:/templates/,classpath:/static/

“ruoyi_admin”模块的“pom.xml”

 <!--静态页面html-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
            <version>2.1.6.RELEASE</version>
        </dependency>
 <!--静态页面html-->
评论 7
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值