1. 程式人生 > >毫無廢話: 從0開始一點一滴用java開發自己的B/S構架--1.2

毫無廢話: 從0開始一點一滴用java開發自己的B/S構架--1.2

hellochina一下<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:office:office" />

所有程式介紹的書第一個例子恐怕都是helloworld,我們來個hellochian如何

在你的tomcat的webapps(以後你的所有應用都放在webapps裡面啦)下建立一個資料夾,就叫myOne

myOne下建個資料夾WEB-INF

WEB-INF下建兩個資料夾:classeslib

照著寫吧,不要問為什麼?想你的程式執行起來,就別寫錯了.

用你的記事本寫hello.jsp放到你的myOne下面吧

<html>hellochina</html>

什麼,還不知道html為何物?那你還是學習學習吧,寫的不好,至少看的明白吧。

用你的記事本寫web.xml放到WEB-INF下吧

<?xml version="1.0" encoding="gb2312"?>

<!DOCTYPE web-app

PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"

"http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">

<web-app>

<!-- Action Servlet Configuration -->

<servlet>

<servlet-name>action</servlet-name>

<!-- Specify servlet class to use:

- Struts1.0.x: ActionComponentServlet

- Struts1.1:ActionServlet

- no Struts:TilesServlet

-->

<!-- <servlet-class>org.apache.struts.tiles.ActionComponentServlet</servlet-class> -->

<servlet-class>org.apache.struts.action.ActionServlet</servlet-class>

<!-- <servlet-class>org.apache.struts.tiles.TilesServlet</servlet-class> -->

<!-- Tiles Servlet parameter

Specify configuration file names. There can be several comma

separated file names

-->

<!-- Tiles Servlet parameter

Specify Tiles debug level.

O : no debug information

1 : debug information

2 : more debug information

-->

<init-param>

<param-name>definitions-debug</param-name>

<param-value>1</param-value>

</init-param>

<!-- Tiles Servlet parameter

Specify Digester debug level. This value is passed to Digester

O : no debug information

1 : debug information

2 : more debug information

-->

<init-param>

<param-name>definitions-parser-details</param-name>

<param-value>0</param-value>

</init-param>

<!-- Tiles Servlet parameter

Specify if xml parser should validate the Tiles configuration file.

true : validate. DTD should be specified in file header.

false : no validation

-->

<init-param>

<param-name>definitions-parser-validate</param-name>

<param-value>true</param-value>

</init-param>

<!-- Struts configuration, if Struts is used -->

<init-param>

<param-name>config</param-name>

<param-value>/WEB-INF/struts-config.xml</param-value>

</init-param>

<init-param>

<param-name>validate</param-name>

<param-value>true</param-value>

</init-param>

<init-param>

<param-name>debug</param-name>

<param-value>2</param-value>

</init-param>

<init-param>

<param-name>detail</param-name>

<param-value>2</param-value>

</init-param>

<load-on-startup>2</load-on-startup>

</servlet>

<!-- Action Servlet Mapping -->

<servlet-mapping>

<servlet-name>action</servlet-name>

<url-pattern>*.do</url-pattern>

</servlet-mapping>

<!-- The Welcome File List -->

<welcome-file-list>

<welcome-file>login.jsp</welcome-file>

</welcome-file-list>

<!-- Struts Tag Library Descriptor -->

</web-app>

什麼,太長了,寫的辛苦?ctrl+cctrl+v會吧?

什麼,看不懂?我有叫你看明白嗎?

把你的tomcat重新啟動(就是關了,再開啟)一下吧.

好了

看到結果了吧。就是一句:hellochina

怎麼,覺得太麻煩了?為寫這麼簡單個東東,搞這麼多的名堂,太“脫褲子放屁”了吧?

沒有人叫你用這個來寫一個helloworld的才程式啊。不要覺得它簡單,學問可大著呢!好了,當你看到這個例子的結果的時候,那就該對你說:歡迎你,你已經看到“用java開發三層結構程式”的門了。重申:你只是看到門了,還沒走到門邊,就更別說入門了,繼續努力吧,好戲還在後頭呢!

本章後話

還記得我們第一個例子的目錄結構嗎?一定要把你的應用放在tomcatwebapps下面,而且你的應用中一定要有WEB-INF,在WEB-INF下一定要有web.xml,當然在WEB-INF下的資料夾classes和資料夾lib對於你現在來說還沒什麼用,但是你就先這樣照葫蘆畫瓢吧。將來把你的程式的JAVA類放在classes裡,把需要的JAR包放在lib裡。

為了讓你把目錄結構看的更明白,我畫了個很醜的東西(圓柱表示資料夾,圓角矩形表示檔案)。

好了,希望你的myOne程式一切順利。