我正在使用 GWT+Java 后端创建一个 Web 应用程序。主机页面是“App.html” 该应用程序也有一个 RPC,并且主机页面在最初加载时会进行 RPC 调用。
但是,这是我从 Google Chrome 浏览器中的 Javascript 控制台收到的消息-
POST http://app.sparkcrawler.com/com.arvindikchari.auth.App/AuthenticationService 404(Not Found)
下面给出的是我的 web.xml 的内容——
<?xml version................................>
<servlet>
<servlet-name>AuthenticationService</servlet-name>
<servlet-class>com.arvindikchari.auth.server.AuthenticationServiceImpl</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>AuthenticationService</servlet-name>
<url-pattern>/com.arvindikchari.auth.App/AuthenticationService</url-pattern>
</servlet-mapping>
我在这里做错了什么?如何解决此错误?