(1)使用MyEclipse开发第一个Web程序

参考:
http://www.cnblogs.com/mengdd/archive/2013/06/11/3131936.html
http://blog.csdn.net/jiuqiyuliang/article/details/36875217
http://www.cnblogs.com/smyhvae/category/634173.html

MyEclipse环境配置
  首先,安装一个MyEclipse,然后进行一些相关的环境配置(Window->Preferences):
  比如字体、Formatter等。
  也可以从Eclipse中导出配置,然后在MyEclipse中导入。

这里需要特别注意的是两个配置:
  1.JSP的打开方式:
  选为用编辑器打开:
  Window->Preferences->General->File Associations
  然后在右边窗口选jsp,下面选择MyEclipse JSP Editor,在右边按下Default按钮将其选为默认。

(1)使用MyEclipse开发第一个Web程序_第1张图片
设置默认界面

2.编码格式的选择
  因为默认的格式不支持中文,所以需要将默认的格式改为UTF-8,这样就不用为了支持中文每次修改。
  在Window->Preferences中搜索JSP,在左边点JSP,找到编码设置,设置为UTF-8:

(1)使用MyEclipse开发第一个Web程序_第2张图片
编码设置

新建程序
  新建一个Web程序,File->New->Web Project.
  起一个名叫HelloWeb,然后选6.0,点击Next:

(1)使用MyEclipse开发第一个Web程序_第3张图片

切记勾选:deployment descriptor


(1)使用MyEclipse开发第一个Web程序_第4张图片

之后项目就建成:


(1)使用MyEclipse开发第一个Web程序_第5张图片
文件目录

打开index.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
    
    
        
    
    
    
  
  
  
  
    
username:
password:

在项目:HelloWeb上右击->run as->MyEclipse Server Application

(1)使用MyEclipse开发第一个Web程序_第6张图片
选择服务器

点击:Next

(1)使用MyEclipse开发第一个Web程序_第7张图片
添加项目到服务器

点击Finish

(1)使用MyEclipse开发第一个Web程序_第8张图片

第一个Servlet程序

Servlet是Java服务器端编程,不同于一般的Java应用程序,Servlet程序是运行在服务器上的,服务器有很多种,Tomcat只是其中一种。

在src中新建一个包hello,新建一个Servlet:LoginServlet.java

(1)使用MyEclipse开发第一个Web程序_第9张图片
新建Servlet

编写Servlet程序如下:

package hello;

import java.io.IOException;
import java.io.PrintWriter;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

@SuppressWarnings("serial")
public class LoginServlet extends HttpServlet {

    /**
     * The doGet method of the servlet. 
* * This method is called when a form has its tag value method equals to get. * * @param request the request send by the client to the server * @param response the response send by the server to the client * @throws ServletException if an error occurred * @throws IOException if an error occurred */ public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { String username = request.getParameter("username"); String password = request.getParameter("password"); response.setContentType("text/html"); PrintWriter out = response.getWriter(); out.println(""); out.println(""); out.println(" A Servlet"); out.println(" "); out.print(" This is "); out.print(this.getClass()); out.println(", using the GET method"); out.println("username:"+username.toString()+"password"+password.toString()+"
"); out.println(" "); out.println(""); out.flush(); out.close(); } }

web.xml

web.xml叫做deployment descriptor,部署描述符。
打开web.xml,编写内容如下:



  HelloWeb
  
    This is the description of my J2EE component
    This is the display name of my J2EE component
    LoginServlet
    hello.LoginServlet
  

  
    LoginServlet
    /LoginServlet
  

启动服务器,及打开浏览器(Open in web browser)


(1)使用MyEclipse开发第一个Web程序_第10张图片
管理服务器

当表单提交之后,servlet运行,显示账号和密码。

(1)使用MyEclipse开发第一个Web程序_第11张图片

表单中,有这样一个属性:method,它的默认值是get,如果将它设置为post,则提交表单后,地址栏不会有用户名和密码的显示。

你可能感兴趣的:((1)使用MyEclipse开发第一个Web程序)