博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ajax与java后台交互
阅读量:5272 次
发布时间:2019-06-14

本文共 1943 字,大约阅读时间需要 6 分钟。

创建的java web项目

前端页面

<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%><%String path = request.getContextPath();String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";%>              My JSP 'index.jsp' starting page    
View Code

后台程序(需配置web.xml,不赘述)

package com.ajax;import java.io.IOException;import java.io.PrintWriter;import javax.servlet.ServletException;import javax.servlet.annotation.WebServlet;import javax.servlet.http.HttpServlet;import javax.servlet.http.HttpServletRequest;import javax.servlet.http.HttpServletResponse;import javax.swing.RepaintManager;/** * Servlet implementation class TestAjax */@WebServlet("/TestAjax")public class TestAjax extends HttpServlet {    private static final long serialVersionUID = 1L;           /**     * @see HttpServlet#HttpServlet()     */    public TestAjax() {        super();        // TODO Auto-generated constructor stub    }    /**     * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)     */    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {        // TODO Auto-generated method stub        //response.getWriter().append("Served at: ").append(request.getContextPath());        response.setCharacterEncoding("UTF-8");        PrintWriter out = response.getWriter();        out.println("Hello " + request.getParameter("name"));        out.flush();    }    /**     * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)     */    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {        // TODO Auto-generated method stub        doGet(request, response);    }}
View Code

 

转载于:https://www.cnblogs.com/wust-ouyangli/p/8457100.html

你可能感兴趣的文章