您的位置:首页 > 编程语言 > Java开发

Spring 5.0.5 在 jdk9 环境下启动警告

2018-04-10 17:32 162 查看

现象

启动时报警告

.   ____          _            __ _ _
/\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
\\/  ___)| |_)| | | | | || (_| |  ) ) ) )
'  |____| .__|_| |_|_| |_\__, | / / / /
=========|_|==============|___/=/_/_/_/
:: Spring Boot ::        (v2.0.1.RELEASE)

2018-04-10 17:30:34.768  INFO 28600 --- [  restartedMain] com.ghca.unicom.tianjin.AppStarter       :
2018-04-10 17:30:34.771  INFO 28600 --- [  restartedMain] com.ghca.unicom.tianjin.AppStarter       : No active profile set, falling back to default profiles: default
2018-04-10 17:30:34.939  INFO 28600 --- [  restartedMain] s.c.a.AnnotationConfigApplicationContext : Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@24a23b0d: startup date [Tue Apr 10 17:30:34 CST 2018]; root of context hierarchy
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by org.springframework.cglib.core.ReflectUtils$1 (file:/home/xxx/.m2/repository/org/springframework/spring-core/5.0.5.RELEASE/spring-core-5.0.5.RELEASE.jar) to method java.lang.ClassLoader.defineClass(java.lang.String,byte[],int,int,java.security.ProtectionDomain)
WARNING: Please consider reporting this to the maintainers of org.springframework.cglib.core.ReflectUtils$1
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release

原因:

见 Spring Framework/SPR-15859: MethodHandles.Lookup.defineClass for CGLIB class definition purposes
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  spring bug