JDK11 springboot javafx 整合,启动报 No auto configuration classes found in META-INF/spring.factories.

  • 环境:jdk11 springboot javafx springboot-javafx-support:2.1.6
  • 备注:jdk8 过后 不再包含javafx环境,在进行利用springboot-javafx-support:2.1.6整合时,不要照抄网上的打包插件配置,其环境大多是基于java8环境的
  • JDK11请使用以下插件配置打包
    
        
            
                org.apache.maven.plugins
                maven-jar-plugin
                3.2.0
                
                    
                        
                            com.*.App 
                        
                    
                
            
            
                org.apache.maven.plugins
                maven-compiler-plugin
                3.10.1
                
                    11
                    11
                
            
            
                org.apache.maven.plugins
                maven-shade-plugin
                3.2.4
                
                    true
                
                
                    
                        package
                        
                            shade
                        
                    
                
            
        
    

你可能感兴趣的:(异常处理,javafx,开发小技巧,spring,spring,boot,后端)