在我的项目中在客户端工作的团队要求我编写一个示例测试页面,并为他们提供一个可以点击并返回200的工作URL。他们要求我也提供样本请求正文。 以下是我将给予他们的请求正文。
{
"MyApp": {
"mAppHeader": {
"appId": "",
"personId": "",
"serviceName": "",
"clientIP": "",
"requestTimeStamp": "",
"encoding": "",
"inputDataFormat": "",
"outputDataFormat": "",
"environment": ""
},
"requestPayload": {
"header": {
"element": ""
},
"body": {
"request": {
"MyTestApp": {
"data": {
"AuthenticationRequestData": {
"appId": "",
"appPwd": ""
}
}
}
}
}
}
}
}
要开发示例页面,我不知道从哪里开始。请放弃你的downvotes(如果问题似乎无关紧要),因为我没有使用JSP Servlets的经验。
这是我现在所拥有的。它是一个简单的登录页面 -
<%@ page language="java"
contentType="text/html; charset=windows-1256"
pageEncoding="windows-1256"
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1256">
<title>Login Page</title>
</head>
<body>
<form action="TestClient">
AppId
<input type="text" name="appID"/><br>
AppPassword
<input type="text" name="appPwd"/>
<input type="submit" value="submit">
</form>
</body>
</html>
这是我的servlet类 -
package com.test;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class TestClient extends HttpServlet {
private static final long serialVersionUID = 1L;
/**
* @see HttpServlet#HttpServlet()
*/
public TestClient() {
super();
// TODO Auto-generated constructor stub
}
/**
* @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
*/
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
response.setContentType("text/json");
App app = new App();
app.setAppID(request.getParameter("appID"));
app.setAppPassword(request.getParameter("appPwd"));
}
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
}
}
我的应用程序是一个简单的Java类,它有appID,appPassword有getter和setter,所以我不打算在这里发布。
我的问题是 - 我这样做是对还是100%错了?请给我你的建议。
答案 0 :(得分:2)
您可以创建一个格式相同的Java对象,然后只使用内置方法
@WebServlet(urlPatterns = {"/BasicWebServices"})
public class BasicWebServices extends HttpServlet{
private static final long serialVersionUID = 1L;
private static GsonBuilder gson_builder = new GsonBuilder().serializeNulls().setDateFormat("MM/dd/yyyy");
public BasicWebServices(){
super();
}
@Override
public void destroy(){
super.destroy();
}
@Override
public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException{
doPost(request, response);
}
@Override
public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException{
try{
Gson gson = BasicWebServices.gson_builder.create();
MyObject myObject = new MyObject();
response.getWriter().write(gson.toJson(myObject));
}
catch(Exception e){
response.getWriter().write("ERROR");
}
}
}
然后,您只需使MyObject与检索到的值设置相同即可。 创建一个设置相同的对象,或者如果可能的话,你可以使用与发送它相同的java类。
对于你的,你必须拥有一个MyApp类,然后拥有对象mAppHeader和requestPayload
public class mAppHeader(){
String appId = "";
String personId = "";
String serviceName = "";
String clientIP = "";
String requestTimeStamp = "";
String encoding = "";
String inputDataFormat = "";
String outputDataFormat = "";
String environment = "";
}
答案 1 :(得分:1)
在doGet方法中使用Gson jarLibrary生成JSON响应
如下所示
Gson gson = new Gson();
HashMap map = new HashMap();
map.put("MyApp",object);
String jsonString = gson.toJson(map);
PrintWriter writer = response.getWriter();
writer.print(jsonString);
答案 2 :(得分:0)
您可以使用Google的JSON库GSON来解析和形成JSON字符串。它可以简化您的生活。请查看以下链接以供参考。 http://viralpatel.net/blogs/creating-parsing-json-data-with-java-servlet-struts-jsp-json/
您还可以参考以下链接http://nareshkumarh.wordpress.com/2012/10/11/jquery-ajax-json-servlet-example/
答案 3 :(得分:0)
您说要将一些参数从客户端传递到服务器,但是同时显示JSON消息,然后您的servlet代码看起来好像参数是随请求传递的。
如果您打算在请求正文中传递JSON,则服务器不会自动为您解析此问题,因此您的调用request.getParameter("appID")
和request.getParameter("appPwd")
将无效。
相反,您需要像这样解析主体(基于上面的示例消息):
JsonObject jsonRequest = Json.createReader(request.getInputStream()).readObject();
JsonObject authenticationRequestData = jsonRequest
.getJsonObject("MyApp")
.getJsonObject("requestPayload")
.getJsonObject("body")
.getJsonObject("request")
.getJsonObject("MyTestApp")
.getJsonObject("data")
.getJsonObject("AuthenticationRequestData");
App app = new App();
app.setAppID(authenticationRequestData.getJsonString("appID"));
app.setAppPassword(authenticationRequestData.getJsonString("appPwd"));
一旦你的servlet有了你想要用来创建响应的对象,你就可以简单地生成JSON并使用HttpServletResponse.getWriter()
来编写它,如下所示:
SomeObject someObject = app.doSomething();
JsonObject jsonObject = Json.createObjectBuilder()
.add("someValue", someObject.getSomeValue())
.add("someOtherValue", someObject.getSomeOtherValue())
.build();
response.setContentType("application/json");
Json.createJsonWriter(response.getWriter()).writeObject(jsonObject);