この会話は、活動がないためロックされています。新しい投稿を作成してください。
この会話は、活動がないためロックされています。新しい投稿を作成してください。
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.
解決済! 解決策の投稿を見る。
表示
返信
いいね!の合計
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.
表示
返信
いいね!の合計
Hi,
what are you trying to achieve?
kind regards,
Jörg
表示
返信
いいね!の合計
Is this OSGi bundle in active state and also please share the entire class of your servlet.
表示
返信
いいね!の合計
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.
表示
返信
いいね!の合計
can you invoke your servlet with AJAX?
表示
返信
いいね!の合計
Yes, i can invoke in ajax.
表示
返信
いいね!の合計
i want to run selenium junit test case from my component.
表示
返信
いいね!の合計
If possible please share the pom.xml which has references to these jars.
表示
返信
いいね!の合計