Hi Team,
I have create a POST sling servlet in CQ.
And on form submit to this servlet am running the junit test case as below.
@Override
protected void doPost(SlingHttpServletRequest request, SlingHttpServletResponse response) throws ServletException, IOException
{
//Do something fun here
response.setContentType("text/plain");
response.getOutputStream().print("Hello POST AbsoluteUrlServlet World!");
JUnitCore testcase = new JUnitCore();
testcase.run(SampleTestMadhu.class);
}
But am getting the below error
Cannot serve request to /bin/acme/my/servlet in com.mycompany.myproject.AbsoluteUrlServlet
java.lang.NoClassDefFoundError: org/junit/runner/JUnitCore
I have installed Junit and junit runner bundle is osgi container but still getting this error.
Please help.
Solved! Go to Solution.
Views
Replies
Total Likes
Maddy737 wrote...
I have installed Junit and junit runner bundle is osgi container but still getting this error.
Kindly make sure the imported bundles are in active state, also validate the API version for bundle that you have imported in OSGI and the one that you are referring in code is same.
Views
Replies
Total Likes
Hi,
what are you trying to achieve?
kind regards,
Jörg
Views
Replies
Total Likes
Is this OSGi bundle in active state and also please share the entire class of your servlet.
Views
Replies
Total Likes
Maddy737 wrote...
I have installed Junit and junit runner bundle is osgi container but still getting this error.
Kindly make sure the imported bundles are in active state, also validate the API version for bundle that you have imported in OSGI and the one that you are referring in code is same.
Views
Replies
Total Likes
can you invoke your servlet with AJAX?
Views
Replies
Total Likes
Yes, i can invoke in ajax.
Views
Replies
Total Likes
i want to run selenium junit test case from my component.
Views
Replies
Total Likes
If possible please share the pom.xml which has references to these jars.
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies
Views
Likes
Replies