java.lang.NoClassDefFoundError: org/apache/commons/discovery/tools/DiscoverSingleton

后端 未结 2 844
梦如初夏
梦如初夏 2021-02-18 18:01

I have create a registration form in jsp file with jsf and I try to connect it with a web service in order to pass through this the elements to a database.

When I press

2条回答
  •  没有蜡笔的小新
    2021-02-18 18:25

    The specified classes are missing from the project classpath at the time of execution of the test.

    The solution is to add the following dependency to your pom:

    
        commons-discovery
        commons-discovery
        0.5
        test 
    
    

提交回复
热议问题