0

我的文件夹结构:

在此处输入图像描述

小服务程序:

@WebServlet(name = "KPItoGSON", urlPatterns = {"/KPItoGSON/*"})

    public class KPItoGSON extends HttpServlet {

    /**
     * Processes requests for both HTTP
     * <code>GET</code> and
     * <code>POST</code> methods.
     *
     * @param request servlet request
     * @param response servlet response
     * @throws ServletException if a servlet-specific error occurs
     * @throws IOException if an I/O error occurs
     */
    protected void processRequest(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        response.setContentType("text/html;charset=UTF-8");
        PrintWriter out = response.getWriter();
        try {
            /*
             * TODO output your page here. You may use following sample code.
             */
            out.println("<html>");
            out.println("<head>");
            out.println("<title>Servlet KPItoGSON</title>");            
            out.println("</head>");
            out.println("<body>");
            out.println("<h1>Servlet KPItoGSON at " + request.getContextPath() + "</h1>");
            out.println("</body>");
            out.println("</html>");
        } finally {            
            out.close();
        }
    }

    // <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">
    /**
     * Handles the HTTP
     * <code>GET</code> method.
     *
     * @param request servlet request
     * @param response servlet response
     * @throws ServletException if a servlet-specific error occurs
     * @throws IOException if an I/O error occurs
     */
    @Override
    protected void doGet(HttpServletRequest request, HttpServletResponse response)
            throws ServletException, IOException {
        processRequest(request, response);
        Gson gson = new Gson();
        HttpServletRequest req = (HttpServletRequest) request;
        KPIListController klc = (KPIListController) req.getSession().getAttribute("kpilist");
        String json = gson.toJson(klc);
        Logger.getLogger(KPItoGSON.class.getName()).warning("The value is"+klc.getKPI().get(1).getUSTER());
        Logger.getLogger(KPItoGSON.class.getName()).info("The json "+json);


      response.setContentType("application/json");
            response.setCharacterEncoding("UTF-8");
            response.getWriter().write(json);
}

查询:

function onButtonClickOrCertainTime(){
     $.get('KPItoGSON', function(responseText) { // 
            alert(responseText);        
        });
}

错误:

/GISPages/KPI/KPItoGSON 404 (Not Found) 

我正在尝试BalusC 的这个例子。通过这个例子,我想从数据库中获取新数据到 javascript 变量中并做一些图表。我不习惯 servlet :(。使用 jQuery 向 servlet 发送请求有什么问题?因为我每次按钮或使用数据库中的函数onButtonClickOrCertainTime 进行轮询时都想要新数据,所以使用 GSON 和 Servlet 方式更好,或者使用jstl ?

4

1 回答 1

1

您的 servlet 已映射,/KPItoGSON/*并且您的 webapp 似乎基于迄今为止提供的信息部署在上下文根上。因此,您的 servlet 正在侦听http://localhost:8080/KPItoGSON.

您的 404 错误表明 servlet 是从/GISPages/KPI文件夹中的 HTML 页面调用的。您已在其中指定了一个相对于路径的 servlet URL,$.get()因此它相对于当前请求 URL 中的顶部文件夹(您在浏览器地址栏中看到的 URL)。它试图通过 URL 调用 servlet,http://localhost:8080/GISPages/KPI/KPItoGSON因此无效。它应该通过 URL 调用 servlet http://localhost:8080/KPItoGSON

除了将 HTML 页面上移两个文件夹之外,您还可以通过在 ajax 请求 URL 中上移两个文件夹来修复它:

$.get('../../KPItoGSON', function(responseText) {
    alert(responseText);        
});

或使用域相关 URL(以斜杠开头):

$.get('/KPItoGSON', function(responseText) {
    alert(responseText);        
});

顺便说一句,您应该从您的 servlet中删除该方法。processRequest()您的 JSON 输出现在带有一段不相关的 HTML 格式错误。

于 2012-08-01T10:55:11.660 回答