Giter VIP home page Giter VIP logo

Comments (3)

mailq avatar mailq commented on July 23, 2024 1

I'm getting the same Exception. But I can also provide the cause of it. The root cause is - according to the stacktrace - a java.lang.ClassNotFoundException: jakarta.xml.bind.JAXBException
This on the other hand is due to a conflict in the jaxb-runtime version present in the (my) project. I have the "old" jaxb-runtime with the javax.xml.bind namespace; it comes from Spring 2. But jollyday requires the "new" jaxb-runtime with the jakarta.xml.bind namespace; which is only present in Spring 3.
Yes there are other cases when the jaxb-runtime version does not match, but the above circumstance is just one example. So check your dependencies if it has the wrong runtime. (Check which dependency provides the JAXBException and which namespace it is in; it has to be jakarta.xml.bind)

from jollyday.

derTobsch avatar derTobsch commented on July 23, 2024

Can you provide a sample project? I hope I will find some time next week.

from jollyday.

oleksiy-rybakov avatar oleksiy-rybakov commented on July 23, 2024

Unfortunately, it might be challenging to provide a sample project since I have no right to share it. However, it seems that the error occurs in the following method:

private ConfigurationService instantiateDataSource(String dataSourceClassName) {
        try {
            Class<?> dataSourceClass = this.classLoadingUtil.loadClass(dataSourceClassName);
            return (ConfigurationService)dataSourceClass.getDeclaredConstructor().newInstance();
        } catch (Exception var3) {
            throw new IllegalStateException("Cannot instantiate datasource instance of " + dataSourceClassName, var3);
        }
    }

and it happens since dataSourceClass.getDeclaredConstructor() seems to be null. Can you please refactor the code in such a way that when debugging it is possible to see what getDeclaredConstructor returns?

from jollyday.

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.