博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
servlet+jsp+java实现Web应用
阅读量:4959 次
发布时间:2019-06-12

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

servlet+jsp+java实现Web应用

环境:

1,eclipse

2,tomcat
3,eclipse tomcat 插件

开发过程:

1,建立一个Dynamic Web Project

2,创建一个欢迎页面

页面可以是jsp/html,我们选择一个jsp页面(放在WebContent内)

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"    pageEncoding="ISO-8859-1"%>
Insert title here

Do you come in?

Select:

3,向工程添加一个servlet文件

package com.example;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;/** * Servlet implementation class Welcome */@WebServlet("/Welcome")public class Welcome extends HttpServlet {    private static final long serialVersionUID = 1L;    /**     * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)     */    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {        // TODO Auto-generated method stub        response.setContentType("text/html");        PrintWriter out = response.getWriter();        String c = request.getParameter("select");        if(c.equals("yes"))            out.print("Welcome!");        else            out.print("I don't like you!");         //带参跳到另一个页面         request.setAttribute("token", token);         request.getRequestDispatcher("welcome.jsp").forward(request,response);    }}

4,创建welcome.jsp页面,并接受参数值

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"    pageEncoding="ISO-8859-1"%>
Insert title here<%String token = request.getParameter("token");//用request得到 %> welcome to rzzx1.

5,创建一个web.xml

      web.xml用来建立servlet与jsp的关系(需要放在WEB-INF内)。

   根据不同的url来调用不同的servlet来进行处理。

Welcome
//要与下面的名称相同
com.example.Welcome
//调用的类的位置
Welcome
/hello.do
//url标识

6,测试地址:http://localhost:8080/webtest/hello.do

7,可能会提示:HTTP method GET is not supported by this URL

解决方案:

public void doPost(HttpServletR……改成:public void service(HttpServletR……

 

 

 

转载于:https://www.cnblogs.com/lizm166/p/8004344.html

你可能感兴趣的文章
highcharts 图表实例
查看>>
ubuntu下如何查看用户登录及系统授权相关信息
查看>>
秋季学期学习总结
查看>>
SpringBoot 优化内嵌的Tomcat
查看>>
【LaTeX】E喵的LaTeX新手入门教程(1)准备篇
查看>>
highcharts曲线图
查看>>
extjs动态改变样式
查看>>
PL/SQL Developer 查询的数据有乱码或者where 字段名=字段值 查不出来数据
查看>>
宏定义
查看>>
ubuntu12.04 串口登录系统配置
查看>>
poj3061
查看>>
linux--多进程进行文件拷贝
查看>>
笔记:git基本操作
查看>>
Gold Smith第一章
查看>>
生成php所需要的APNS Service pem证书的步骤
查看>>
JavaWeb之JSON
查看>>
URL中的特殊字符处理
查看>>
HOT SUMMER 每天都是不一样,积极的去感受生活 C#关闭IE相应的窗口 .
查看>>
windows平台上编译mongdb-cxx-driver
查看>>
optionMenu-普通菜单使用
查看>>