用java运行jar文件:java -jar ,报错
: No auto configuration classes found in META-INF/. If you are using a custom packaging, make sure that file is correct.。
打开编译的jar包,找到META-INF/文件,用记事本或者notepad++打开,内容如下:
# PropertySource Loaders
=\
,\
# Run Listeners
=\
# Application Context Initializers
=\
,\
,\
,\
# Application Listeners
=\
,\
,\
,\
,\
,\
,\
,\
,\
# Environment Post Processors
=\
,\
# Failure Analyzers
=\
,\
,\
,\
,\
,\
,\
# FailureAnalysisReporters
=\
在文件的末尾加上:
# Auto Configure
=\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
.neo4j.Neo4jDataAutoConfiguration,\
.neo4j.Neo4jRepositoriesAutoConfiguration,\
,\
,\
,\
,\
,\
,\
,\
,\
.h2.H2ConsoleAutoConfiguration,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
.oauth2.OAuth2AutoConfiguration,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
,\
保存,自动更新到jar包里,再运行即可。
原文地址:/static/article_339.html