Coder Social home page Coder Social logo

Comments (8)

idelpivnitskiy avatar idelpivnitskiy commented on May 26, 2024

Another strange fact:
For chat implementation I'm using Stomp and SockJS, like this: https://spring.io/guides/gs/messaging-stomp-websocket/
This implementation supports different protocols: https://github.com/sockjs/sockjs-client#supported-transports-by-name
And the excpection caused only when it works through websocket protocol. If I will change the protocol to xhr-streaming in my frontend implementation, it will works fine!

from orika.

elaatifi avatar elaatifi commented on May 26, 2024

Sorry for the late reply
Did you have a unit test (or small project) to reproduce the error ?

from orika.

idelpivnitskiy avatar idelpivnitskiy commented on May 26, 2024

@elaatifi I'll prepare a small project next month, I haven't got enough time now.
Thanks!

from orika.

newcgen avatar newcgen commented on May 26, 2024

Hello!

I am using Orika in Java EE 6 environment.
I get following exception.

Caused by: java.lang.NoClassDefFoundError: name/of/my/Class
    at java.lang.Class.getDeclaredConstructors0(Native Method)
    at java.lang.Class.privateGetDeclaredConstructors(Class.java:2483)
    at java.lang.Class.getConstructor0(Class.java:2793)
    at java.lang.Class.newInstance(Class.java:345)
    at ma.glasnost.orika.impl.generator.SourceCodeContext.getInstance(SourceCodeContext.java:266)
    at ma.glasnost.orika.impl.generator.MapperGenerator.build(MapperGenerator.java:75)
    at ma.glasnost.orika.impl.DefaultMapperFactory.buildMapper(DefaultMapperFactory.java:1372)
    at ma.glasnost.orika.impl.DefaultMapperFactory.build(DefaultMapperFactory.java:1199)
    at ma.glasnost.orika.impl.DefaultMapperFactory.getMapperFacade(DefaultMapperFactory.java:859)

A similar problem exists and Dozer.
But Dozer allows to replace the default ClassLoader with a custom one.
This workaround solves the problem.

from orika.

rickla avatar rickla commented on May 26, 2024

I got these also in a grails environment when I updated to 1.4.6, so had to revert back.

from orika.

Jtalk avatar Jtalk commented on May 26, 2024

This is because JavassistCompilerStrategy uses it's own ClassLoader to load mapping bean classes. Deployment artifacts (WAR, EJB-JAR) and deployment dependencies (/lib/*.jar) are being loaded by different class loaders in some application servers (e.g. in Glassfish). Deployment loader is usually a child of the libraries' one, so JavassistCompilerStrategy cannot access you deployment classes from the parent CL.

The simple workaround is to subclass JavassistCompilerStrategy in your deployment so it's class is loaded by deployment CL. Your overridden class should then be manually applied to the Orika MapperFactory (new DefaultMapperFactory.Builder().compilerStrategy(new YourSubclass()).build() should do the trick).

The actual fix would be to provide JavassistCompilerStrategy with a dependency injection capability allowing it to use custom ClassLoader and ProtectionDomain for mapping classes.

from orika.

dickerpulli avatar dickerpulli commented on May 26, 2024

@idelpivnitskiy Have you solved the problem by now?

from orika.

idelpivnitskiy avatar idelpivnitskiy commented on May 26, 2024

@dickerpulli no, I decided to use runnable version with embedded Jetty instead of separate Jetty container

from orika.

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.