Solucionado (ver solução)
Solucionado
(ver solução)
1
resposta

Spring FrameWork - An illegal reflective access operation has occurred , o que vem a ser isso ?

Boa Tarde , Galera !!!!

Estou com uma duvida de error , que nunca vi , segue o Warning: , se alguém entender é só fazer um comentário, Obrigado !!!!

WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by org.springframework.cglib.core.ReflectUtils$1 (vfs:/C:/WildflyAS/standalone/deployments/Sistema.war/WEB-INF/lib/spring-core-4.2.4.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
1 resposta
solução!

Resposta do Grupo de Usuario Java

Mike - Moderador

Boa tarde @Venoms

Isso ai é um warning, pode ignorar, não traz problema algum.

Tem uma API do java chamada Reflection, que é muita usada por frameworks.

Esse warning foi introduzido no java 9, quando você seta um atributo private para public via reflection. Para deixar um atributo private acessivel (public) antes do java 8, era só utilizar setAccessible(), agora há outras condições que são necessárias atender para funcionar corretamente.