Giter VIP home page Giter VIP logo

Comments (15)

thawkins avatar thawkins commented on June 15, 2024 6

I'm running into this too, any idea of when a fix may be available.

from reflectasm.

NathanSweet avatar NathanSweet commented on June 15, 2024 4

I'm not sure, I haven't looked into it. It's not a problem yet though, it's just a warning. It won't be a problem until they disallow what the library needs to function. At that time we either fix it or the library won't work on the latest JVMs. That is the case for a great many libraries.

from reflectasm.

magro avatar magro commented on June 15, 2024 3

An option might be to create a multi release jar (aka MRJAR) and use a different way for Java 9+ to defineClass (MethodHandles.Lookup.defineClass).

from reflectasm.

dwing4g avatar dwing4g commented on June 15, 2024 3

try this:

// suppress "An illegal reflective access operation has occurred" in JDK9+
if (!System.getProperty("java.version").startsWith("1.") && !MethodAccess.class.getModule().isNamed())
Class.class.getModule().addOpens(Class.class.getPackageName(), MethodAccess.class.getModule());

from reflectasm.

soundasleep avatar soundasleep commented on June 15, 2024 3

In a similar vein to EsotericSoftware/kryo#626, could you support a System property (-Dreflectasm.unsafe=false) or something so that we can stop this error message from appearing (and ideally start to get ready for when illegal access is removed)? 🙏

from reflectasm.

NathanSweet avatar NathanSweet commented on June 15, 2024 2

Can ignore or disable the warning.

from reflectasm.

robinverduijn avatar robinverduijn commented on June 15, 2024 2

I tried to implement the suggestion of using MethodHandles.lookup().defineClass() instead of ClassLoader.defineClass(), but only got as far as robinverduijn/reflectasm@fix-code-warnings...robinverduijn:fix-illegal-reflective-access. It left me with the warning gone but two tests failing. At that point I got stuck, but maybe someone else can figure out how to make it work from there?

from reflectasm.

cowwoc avatar cowwoc commented on June 15, 2024 1

@NathanSweet For what it's worth, @magro explained how to fix this problem. Simply replace ClassLoader.defineClass with MethodHandles.Lookup.defineClass

from reflectasm.

iverhun avatar iverhun commented on June 15, 2024 1

Just FYI: still the same warning with java 13

from reflectasm.

rarcher avatar rarcher commented on June 15, 2024

Some of my users are also seeing this. See rarcher/couch-potato-server#27 for a discussion.

from reflectasm.

TheMode avatar TheMode commented on June 15, 2024

Any update?

from reflectasm.

cowwoc avatar cowwoc commented on June 15, 2024

@NathanSweet Obviously. But can't the underlying problem be fixed?

from reflectasm.

NathanSweet avatar NathanSweet commented on June 15, 2024

If that works, great! I just haven't had the time or personal need to dig into it.

from reflectasm.

jfida avatar jfida commented on June 15, 2024

Any news on this?

from reflectasm.

magro avatar magro commented on June 15, 2024

Sorry I'm too busy with other things, but maybe someone could come up with a PR for multi-release jar?

from reflectasm.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.