gpt4 book ai didi

java - Web服务将数据重定向到java中请求的源

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

我创建了一个 Web 服务,它接收数据并将其存储在数据库中。为了向用户确认存储,我已将存储的数据显示为与 JSON 输出(Web 服务正在处理的位置)相同的页面中的响应。

现在我有一个疑问,响应是否可以重定向到请求页面。

为了您更好地理解,

  • A user uploading the data from a html file (upload.html).

  • Now the web service will store the data in database (upload.java) and shows output as JSON in same page (current am using this way)

  • Can i take the response JSON output back to the html (upload.html) and show the JSON output

这样可以吗?

最佳答案

您正在将用户的数据发布/发送到服务器,然后您再次想要将响应重定向到用户。 为什么?

当用户提交数据时,您已经拥有了它。因此,只需对其进行格式化并向用户显示适当的消息即可。重定向后显示消息不会增加任何值(value),除非您想显示来自服务器的某些消息。

编辑

Web service tutorial

检查上面链接中的服务代码;它返回字符串。同样,您需要修改您的服务以返回适当的对象。

public String hello(@WebParam(name = "name") String txt) {
return "Hello " + txt + " !";
}

关于java - Web服务将数据重定向到java中请求的源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14414423/

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