gpt4 book ai didi

jsp - 将 Java Restful Service 中的值填充到 JSP 页面中

转载 作者:太空宇宙 更新时间:2023-11-04 12:12:15 25 4
gpt4 key购买 nike

我使用 JSON 创建了一个 Java Restful 服务,我从该服务中获取了一些值,然后我想将这些值填充到一个 JSP 页面上。

我的“test.jsp”页面

<%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO-8859-1"%>
<!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=ISO-8859-1">
<title>test</title>
</head>
<body>
<form action="loginServlet" method="post">
<table>
<tr>
<td>First Name :</td>
<td><input type="text" value="" name="txtFirstname" value='<%=request.getParameter("firstinput")%>' /></td>
</tr>
<tr>
<td>Email :</td>
<td><input type="text" name="txtEmail" value='<%=request.getParameter("firstinput")%>' /></td>
</tr>
<tr align="center">
<td colspan="2"><input type="submit" value="Submit" /></td>
</tr>
</table>
</form>
</body>
</html>

我的service.java代码如下

package test.xyz.abc;
import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.TimeZone;
import javax.ws.rs.Consumes;
import javax.ws.rs.POST;
import javax.ws.rs.Path;
import org.json.JSONObject;

@Path("/")
public class Service {
DateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
SimpleDateFormat returnDateFormat = new SimpleDateFormat("dd-MM-yyyy HH:mm");

@POST
@Consumes("application/x-www-form-urlencoded")
@Path("/auth")
public void Auth(String json) {
Date dt = new Date();
formatter.setTimeZone(TimeZone.getTimeZone("IST"));
String currentTime = formatter.format(dt);
JSONObject returnJson = new JSONObject();

try {
JSONObject innerJsonObj = new JSONObject(json);
String email = innerJsonObj.getString("email");
String fname = innerJsonObj.getString("fname");

//How to put email and fname values into "test.jsp" page
} catch (Exception e) {
}
}
}

“web.xml”代码

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
id="WebApp_ID" version="3.1">
<display-name>test</display-name>
<welcome-file-list>
<welcome-file>test</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>test</servlet-name>
<servlet-class>com.sun.jersey.server.impl.container.servlet.ServletAdaptor</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>test</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
</web-app>

我正在使用 Eclipse Mars1 和 Java。

最佳答案

您正在谈论 JSP 页面,这意味着您仍在服务器上。所以你不需要使用webservice(访问服务器的一扇门)。

创建一个将创建实例(包含电子邮件和名称)的 Controller 。您可以在 servlet 中调用此方法,将其作为 JSP 中的属性推送。

interface Controler {
public Auth auth(); return an instance of Auth(String email, String fname)
}

在Servlet类中,获取结果并直接推送它(需要是一个BEAN)。

class Servlet { 
Controler c; //Create a instance of the implementation of Controler

doGet(...) { //push attribute of c.auth() }
}

然后您只需更新 JSP 即可使用您发送的属性来填充页面。

稍后,如果您需要一些 AJAX,请使用 WebService 来调用 Controller 方法。将实例转换为 JSON 以发送结果。

class Service{
Controler c; //Create a instance of the implementation of Controler

//NEED TO RETURN A STRING
public String Auth(){
return c.auth()
.toJson() //Return a JSON with the data of the instance
.toString(); //parsing the JSON in a String
}
}

编辑

因为您只想从客户端动态获取该值。您将需要使用 Javascript 来调用 Ajax 您的 Web 服务。这将检索您创建的 JSON。当然,您需要更正您的服务以返回某些内容,您的身份验证不会返回任何内容。

将您创建的 JSON 解析为字符串(toString() 工作)。

在 Javascript 部分,您需要从字符串创建 JSON,幸运的是,这也非常简单。使用 JQuery,你只需要指定你等待一个 json,数据将是一个 javascrip 对象。如果没有,您需要自己解析字符串,请查看以下内容以了解如何从 url(JSON 格式)获取一些数据:

Jquery/Ajax - Parse JSON Response

有了这个,你就可以做到。

关于jsp - 将 Java Restful Service 中的值填充到 JSP 页面中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39763831/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com