- 论坛徽章:
- 0
|
http://www.zhuoda.org/3/19730.html
humble&happy
The Holy Bible says we shouble be humble and happy. yes,humble can make us improve,and happy can make us feel satisfied in the world. we blieve ourselves,because we blieve in God.
导航
struts入门
本文仅有的目的:1,使你的第一个struts能运行起来(不讲关于struts原理方面的)
(if this is not your aim,please don't waste your time)
1,j2ee中最头痛的就是什么都是以环境配置开始,还好,配多了,熟悉了,也就无所谓了,其实没什么困难的
(1)下载struts包 http://struts.apache.org/download.cgi
(2)在你的tomcat中的webapps下建个application,假设为userRegister(用户注册的例子)
其中的目录结构为
userRegister
|__WEB_INF
|____classes //此文件夹中存放java原文件(action,form等)及其对应的class文件
|____web.xml
|____struts-config.xml
|____*.java
|____userRegister
|_______*.class
|____lib //把struts包下的lib中的.jar包都copy过来
|____tld //把struts包下的lib中的struts标签.tld文件copy过来
2,来看看我们的java文件是怎样实现客户注册的
(1)User.java
package userRegister;
/**
*表示用户信息,它是一个值对象,被From使用
*这个对象必须提供对应的getter和setter方法
*/
public class User
{
public String userName;
public String password;
public int id ;
public void setUserName(String name)
{
this.userName=name;
}
public void setPassword(String password)
{
this.password=password;
}
public String getUserName()
{
return this.userName;
}
public String getPassword()
{
return password;
}
public int getId()
{
return this.id;
}
public void setId(int id)
{
this.id=id;
}
}
(2)UserForm.java
package userRegister;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts.action.*;
//Form,包含一个user属性。
public class UserForm extends ActionForm
{
private User user=new User();
public void setUserName(String userName)
{
user.setUserName(userName);
}
public String getUserName()
{
return user.getUserName();
}
public void setUser(User user)
{
this.user=user;
}
public User getUser()
{
return this.user;
}
//重新设置form
public void reset(ActionMapping mapping, HttpServletRequest request)
{
this.user = new User();
}
//form有效性判断,这里做简化处理。我们不熟悉,也可不要这段代码
public ActionErrors validate(ActionMapping mapping,
HttpServletRequest request)
{
ActionErrors errors = new ActionErrors();
if ((user.getUserName() == null) || (user.getPassword().length() "password", new ActionError("error.user.password"));
}
return errors;
}
}
(3)UserAction.java
package userRegister;
import org.apache.struts.action.*;
import javax.servlet.http.*;
//Action类。
public class UserAction extends Action
{
public ActionForward perform(ActionMapping mapping,ActionForm form,HttpServletRequest request,HttpServletResponse response)
{
UserForm f=(UserForm)form;
try
{
UserBean bean=new UserBean();//UserBean连接数据库,执行具体的业务逻辑。
bean.addUser(f.getUser());
}
catch(Exception e)
{
e.printStackTrace();
}
request.setAttribute("User",f.getUser());//把从form中user的属性保存供client调用
return (mapping.findForward("userCreated"));/*实现struts中的映射,其中userCreated为struts-config.xml代码中的片段
,实现页面映射*/
}
}
(4)UserAction.java
package userRegister;
import java.util.*;
import java.sql.*;
import javax.sql.*;
import java.io.*;
/**
*实现具体的业务逻辑,它被Action类调用
*并且和HttpRequset等无关,这样增加了重用性。
*/
public class UserBean
{
private Connection conn ;
public UserBean()throws Exception
{
String CLASSFORNAME="com.mysql.jdbc.Driver";
String URL="jdbc:mysql://localhost/jspdev?user=heyf&password=19830824&useUnicode=true&characterEncoding=8859_1";
try
{
Class.forName(CLASSFORNAME);
conn = DriverManager.getConnection(URL);
}
catch(Exception e)
{
e.printStackTrace();
}
}
/**
*在数据库中添加一个用户
*/
public void addUser(User user)throws Exception
{
Statement stmt=conn.createStatement();
stmt.executeUpdate("insert into User values('"+user.getUserName()+"','"+user.getPassword()+"',"+user.getId()+")");
}
}
3,实现代码的可重用的中间成本往往是一种语言(xml)对重用代码的配置,这里两个需要的两个配置文件
(1)web.xml,运行struts的总体配置,包括对tld文件的路径等
Struts Blank Application
action
class>org.apache.struts.action.ActionServlet
application
ApplicationResources
config
/WEB-INF/struts-config.xml
debug
2
detail
2
2
action
*.do
index.jsp
/struts-bean
/WEB-INF/tld/struts-bean.tld
/struts-html
/WEB-INF/tld/struts-html.tld
/struts-logic
/WEB-INF/tld/struts-logic.tld
/struts-nested
/WEB-INF/tld/struts-nested.tld
/struts-tiles
/WEB-INF/tld/struts-tiles.tld
/struts-template
/WEB-INF/tld/struts-template.tld
/jstl/c
/WEB-INF/tld/c.tld
(2)struts-config.xml
"1.0" encoding="ISO-8859-1" ?>
4实现struts功能的jsp代码
(1)creatUser.jsp
创建一个用户
/*其中action中的值对应于struts-config.xml中的
password:
(2)viewUser.jsp
import="userRegister.User"%>
);
%>
已经创建了用户:
Name:
password:xxxxx
Id:
问题:
也许你比较郁闷的是怎么编译那些java文件
因为调用了这些java包,
import org.apache.struts.action.*;
import javax.servlet.http.*;
import javax.sql.*;
import javax.servlet.http.HttpServletRequest;
而我们的jdk中不带这些包,tomcat5.0中没带javax.*包(老版本的tomcat4.0中又带了)可以从j2sdk中获得。
只有用功能强大的ant来编译了
怎样编译,请看http://www.zhuoda.org/blog3/idiot_archive_2005_05_11_17883.html
referred:JSP应用开发详解
what ,you still cann't make you struts work,show your question.
idiot 2005-06-03 18:47:31
Trackbacks: 1
人气: 3051
Ping Me
Trackback Ping URL:http://www.zhuoda.org/tb.jsp?id=19731
Feedback
# Re:写得很详细,让人看了很舒服,谢谢你的分享 @2005-10-18 16:31:12 过客
写得很详细,让人看了很舒服,谢谢你的分享
# Re:daewoo @2005-10-10 13:43:48 samsung
Kim Daechung
发表评论>>
姓名:
主题:
内容:
最少于6个,最长2000个字符
Powered by
YuLog Ver 0.56 &
MovableStyle
Copyright © 2001-2006, 卓达经济管理学院
本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/910/showart_73255.html |
|