我是网络应用程序的初学者。我在glassfish服务器上使用java EE创建了一个动态Web项目。现在我想让客户端使用json将数据发送到服务器并使用json或xml从服务器接收数据。通过在线搜索,我现在清楚如何在服务器端编程。现在我使用ajax发送json数据。但是,也许它很容易在服务器上编码,我找不到任何与服务器相关的代码。我的服务器端应该使用JSP来读取json数据,使用bean(已完成)生成一些数据并将数据发回。这是代码,我不知道问题在哪里。任何人都可以给我任何建议吗?你的帮助对我来说意味着很多!
这是客户端的ajax代码。我从表格中发送了两个输入数字
$(function() {
$("#myform").submit(function() {
var lat = $("#num1").val();
var lon = $("#num2").val();
alert("form");
if (num1 == '' || num2 == '') {
$('.success').fadeOut(200).hide();
$('.error').fadeOut(200).show();
} else {
$.ajax({
type : "POST",
url : "marker.jsp",
contenttype : 'application/json; charset=utf-8',
data : {
"num1" : "wtf",
"num2" : $("#num2").val(),
},
success : function(msg) {
$('.success').fadeIn(200).show();
$('.error').fadeOut(200).hide();
alert(msg);
}
});
}
return false;
});
});
但是在我切换到jsp页面后,我只发现了两个空值,这里是服务器上的代码,我打算在开始时发送xml,我不确定request.getParameter是否可以工作以及如何发回这些xml数据或使用json格式发回数据。救命啊!
<?xml version="1.0" encoding="UTF-8"?>
<%@ page contentType="text/xml" %>
<%@ page import="javax.naming.InitialContext,net.roseindia.ejb3.stateless.*,javax.ejb.EJB,java.util.*"%>
<%
try {
String s1 = request.getParameter("num1");
String s2 = request.getParameter("num2");
%>
<%=s1%>
<%=s1%>
<%
if (s1 != null && s2 != null) {
List<String> textdatas = cal.GetTextResults(s1, s2);
for (String textdata : textdatas) {
String textLocation= "("+textdata.split("\\t",2)[0]+")";
System.out.println(textLocation);
%>
<text>
<location><%=textLocation%></location>
<event> <%=textdata.split("\\t",2)[1]%></event>
</text>
<%
}
List<String> images = cal.getImage();
for(String image: images){
System.out.println(image);
%>
<image>
<imglocation><%=image.split("\\t",2)[0]%></imglocation>>
<path><%=image.split("\\t",2)[0]%></path>
</image>
<%
}
}
}// end of try
catch (Exception e) {
e.printStackTrace();
//result = "Not valid";
}
%>
答案 0 :(得分:0)
如果您没有使用任何MVC框架,我建议您采用一个。似乎从JSP渲染XML / JSON似乎不是一个好/简单的做法。不难看出你的代码太麻烦了......不要说它可能不是有效的代码。
我建议您采用MVC框架 - 我使用VRaptor这是一个非常好的和简单的框架,允许您开发RESTful Web应用程序,甚至不知道它。一定要查看one minute guide !!!这个框架通过封装ThoughWorks XStream Framework使得完成任务变得简单。看看使用JSON对象响应请求所需的内容:
import static br.com.caelum.vraptor.view.Results.*;
@Resource
public class ClientsController {
private final Result result;
private final ClientDao dao;
//result and dao parameters gets inject by VRaptor that
//by its turn lets you chose which Dependency Injection framework
//you wouldd like to be using with - pretty much as a plugin
public ClientsController(Result result, ClientDao dao) {
this.result = result;
this.dao = dao;
}
@Get("/client/json")
public void loadJson(MyParam param) {
result.use(json()).from(dao.getClient(param.id)).serialize();
}
@Get("/client/xml")
public void loadXml(MyParam param) {
result.use(xml()).from(dao.getClient(param.id)).serialize();
}
}
请注意,Vraptor会从JSON反序列化MyParam对象,并将其注入到您的控制器操作请求中!
此示例取自this page!