springboot整合前端工程打成jar包

将springboot和前端页面打进一个jar包

  1. pom文件增加配置


            
                
                    maven-resources-plugin
                    
                        utf-8
                        true
                        
                            woff
                            woff2
                            eot
                            ttf
                            svg
                        
                    
                
            
        
        
            
                src/main/resources
                
                    **.*
                    **/**.*
                
                true
            
        
  1. 新建mvc配置类

@Configuration
public class WebMvcConfig implements WebMvcConfigurer {
    /**
    *    访问路径出错默认跳转至首页
    **/
    @Bean
    public WebServerFactoryCustomizer webServerFactoryCustomizer(){
        return factory -> {
            ErrorPage error404Page = new ErrorPage(HttpStatus.NOT_FOUND, "/App/index.html");
            factory.addErrorPages(error404Page);
        };
    }

}
  1. 将前端工程编译后放到resource/static 目录下

  1. 执行打包操作

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