servlet简单配置详解

web.xml配置如下



   
    This is the description of my J2EE component 
    This is the display name of my J2EE component
    SendMessageAction            
    action.SendMessageAction   
  

  
    SendMessageAction
    /servlet/SendMessageAction     
  
  
    index.jsp
  

jsp页面设置

<%@ 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
	
	
	    
	
	
	
  
  
  
  	  测试短信发送 
手机号:
测试我们web.xml有没有配置好,tomcat在部署完项目且开启的情况下在浏览器输入localhost:8080/项目名/web.xml配置中url-pattern里面的值,按照我上面的配置,确认是否配置好web.xml,在浏览器输入localhost:8080/Test/servlet/SendMessageAction。

在写servlet类中,如果你jsp中form的method是get,在servlet类的doGet()方法里写逻辑代码,如果jsp中form的method是post,在servlet类的doPost()方法里写逻辑代码。

你可能感兴趣的:(服务器,Java,servlet)