springboot配置静态资源扫描路径

官方说明:Web

springboot配置静态资源扫描路径_第1张图片

 springboot配置静态资源扫描路径_第2张图片

 打包对应pom文件内容如下:


      
          
              
              src/main/webapp
              
              ../app/conf/static
              
                  **/**
              
          
      
  	
        
                org.codehaus.mojo
                appassembler-maven-plugin
                1.10
                
                    
                        
                        generate-jsw-scripts
                        
                        package
                        
                            assemble
                        
                    
                
                
                    ${project.build.directory}/app
                    lib
                    bin
                    conf
                    true
                    src/main/resources
                    flat
                    UTF-8
                    logs
                    tmp
                    
                        
                            com.test.app
                            
		                        
		                            -Xms256M
		                            -Xms512M
		                        
		                    
                            dataSupportManager
                            
                                windows
                                unix
                            
                        
                    
                
            
  	
  

参考博客:springboot 2.0+auth2 resources: static-locations 外部资源拦截

Springboot配置文件加载优先级和web静态资源访问规则(九)_我爱吃红薯的博客-CSDN博客

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