structs.xml DateiStruts Ajax-Fehler 404
<package name="admin" extends="struts-default" namespace="/admin">
<!-- Add Login Functionality -->
<interceptors>
<interceptor class="AdminLoginController" name="loginStack"></interceptor>
<interceptor-stack name="loginStack">
<interceptor-ref name="loginStack" />
</interceptor-stack>
</interceptors>
<action name="testing" class="BookingsController" method = "testing">
<interceptor-ref name="loginStack"></interceptor-ref>
<interceptor-ref name="defaultStack" />
<result type="stream">
<param name="contentType">text/html</param>
<param name="inputName">inputStream</param>
</result>
</action>
</package>
register.jsp
function test()
{
$.ajax({
type : "Get",
url : "testing.action",
success : function(response)
{
alert("Success");
}
});
}
<button class="button warning" onclick="test()" id="testApp">Testing</button>
BookingsContoller.java Datei
public String testing()
{
try
{
return "SUCCESS";
}
catch(Exception e)
{
return "error";
}
}
Ich bin neu in Web-Entwicklung-Datei. Ich versuche einen Ajax-Anruf von jsp zu machen. Aber ich bekomme 404 Fehler nicht gefunden. Ich habe die my-Code-Snippets als Referenz hinzugefügt. Bitte hilf mir. Danke im Voraus.