需要做什么?
在AWS上使用Web服务(REST)部署Web应用程序。 (Tomcat服务器)
我做了什么?
使用REST Web服务构建Web应用程序。在本地测试成功。
问题
现在,当我使用弹性beanstalk将其部署到AWS时,会出现 404错误。
我的网络服务代码
@Path("/abc")
public class registerService {
@POST
@Path("/crunchifyService")
@Consumes(MediaType.APPLICATION_JSON)
public Response crunchifyREST(InputStream incomingData) {
StringBuilder crunchifyBuilder = new StringBuilder();
try {
BufferedReader in = new BufferedReader(new InputStreamReader(incomingData));
String line = null;
while ((line = in.readLine()) != null) {
crunchifyBuilder.append(line);
}
} catch (Exception e) {
System.out.println("Error Parsing: - ");
}
System.out.println("Data Received: " + crunchifyBuilder.toString());
User userObject = new Gson().fromJson(crunchifyBuilder.toString(), User.class);
System.out.println("JSon object: " + userObject.getSurname());
int status = RegisterDao.register(userObject);
if(status == 1)
{
}else{
System.out.println("Failed again");
}
// return HTTP response 200 in case of success
return Response.status(200).entity(crunchifyBuilder.toString()).build();
}
@GET
@Path("/verify")
@Produces(MediaType.TEXT_PLAIN)
public Response verifyRESTService(InputStream incomingData) {
String result = "CrunchifyRESTService Successfully started..";
// return HTTP response 200 in case of success
return Response.status(200).entity(result).build();
}
@GET
@Path("/users")
@Produces(MediaType.TEXT_PLAIN)
public Response getUsers(){
return Response.status(200).entity("Done").build();
}
}
REST客户端代码
<%
String json = new Gson().toJson(u);
System.out.println(json);
try {
URL url = new URL("http://storageserver-env.sa-east-1.elasticbeanstalk.com/MyApplicationName/api/abc/crunchifyService");
URLConnection connection = url.openConnection();
connection.setDoOutput(true);
connection.setRequestProperty("Content-Type", "application/json");
connection.setConnectTimeout(5000);
connection.setReadTimeout(5000);
OutputStreamWriter out1 = new OutputStreamWriter(connection.getOutputStream());
out1.write(json);
out1.close();
BufferedReader in = new BufferedReader(new InputStreamReader(connection.getInputStream()));
while (in.readLine() != null) {
}
System.out.println("\nCrunchify REST Service Invoked Successfully..");
in.close();
} catch (Exception e) {
System.out.println("\nError while calling Crunchify REST Service");
System.out.println(e);
}
%>
我的服务器日志说
127.0.0.1 - - [09 / Apr / 2016:13:38:05 +0000]&#34; POST / SecureStorage / api / abc / crunchifyService HTTP / 1.1&#34; 404 1070
**
Web.xml中
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">
<display-name>SecureStorage</display-name>
<welcome-file-list>
<welcome-file>
createTable.jsp</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>Application</servlet-name>
<servlet-class>org.glassfish.jersey.servlet.ServletContainer</servlet-class>
<init-param>
<param-name>jersey.config.server.provider.packages</param-name>
<param-value>registration</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>Application</servlet-name>
<url-pattern>/api/*</url-pattern>
</servlet-mapping>
</web-app>
答案 0 :(得分:1)
在AWS上部署Web应用程序或Web服务之间没有区别。
您将在aws网站上获得有关如何部署Web应用程序的精彩教程。
我的问题是什么?
从休息客户端打电话后,它给了我404错误。
如何解决?。
按照上面评论部分的说明,我在我的日志中找到了。
严重[http-nio-8080-exec-8] org.apache.catalina.core.StandardWrapperValve.invoke分配 servlet应用程序的异常java.lang.NoSuchMethodError: javax.ws.rs.core.Application.getProperties()Ljava / util的/地图;
这是一个实际问题。在类路径上具有两个不同版本的类时会发生此异常。在此之后我删除了我的额外重叠jar。 More info about above exception
另一个问题 经过上述改进预计一切都会正常工作,但仍然有来自其他客户端的服务调用的404错误代码。
<强>解决方案强>
我的客户端使用以下格式的网址。
&#34; http://storageserver-env.sa-east-1.elasticbeanstalk.com/MyApplicationName/api/abc/crunchifyService&#34;
URLGivenByAWSWhereWebAppIsDepoyed / MyApplicationName / ResourcePath
以上网址格式正在处理本地地址,即 的的locahost:8080 / MyApplicationName / ResourcePath 强>
但部署后它无效。
我尝试从上面的网址中删除MyApplicationName的名称,但它确实有效。
工作格式
URLGivenByAWSWhereWebAppIsDepoyed / ResourcePath