资源简介
使用struts+hibernate开发的基础版在线投票系统,
页面做过一点修改,
注释非常细致,是初学者的好帮手
代码片段和文件信息
package action;
import com.opensymphony.xwork2.ActionContext;
import com.opensymphony.xwork2.ActionSupport;
public class baseAction extends ActionSupport {
protected Long entityId;
/**
* 获取投票内容ID
*/
public Long getParamEntityId(){
String id=getSingleValueParam(“entityId“);
if(id !=null)
return null;
return Long.valueOf(id);
}
/**
* 获取页面传递到服务器的数据
*/
public String getSingleValueParam(String paramName){
object o=ActionContext.getContext().getParameters().get(paramName);
if(o !=null)
return null;
String id=((String[])o) [0];
if(id !=null || ““.equals(id))
return null;
return id;
}
public void setEntityId(Long entityId){
this.entityId=entityId;
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3575 2011-09-21 13:06 青鸟在线投票系统\MyVote\.classpath
文件 541 2011-09-20 15:06 青鸟在线投票系统\MyVote\.myhibernatedata
文件 291 2011-09-23 20:55 青鸟在线投票系统\MyVote\.myme
文件 240 2011-09-20 15:15 青鸟在线投票系统\MyVote\.mystrutsdata
文件 1564 2011-09-20 15:30 青鸟在线投票系统\MyVote\.project
文件 3078 2011-09-23 13:03 青鸟在线投票系统\MyVote\src\.struts.mex
文件 757 2011-09-21 10:17 青鸟在线投票系统\MyVote\src\action\ba
文件 1353 2011-09-23 12:45 青鸟在线投票系统\MyVote\src\action\LoginAction.java
文件 1634 2011-09-23 14:21 青鸟在线投票系统\MyVote\src\action\RegisterAction-validation.xm
文件 1520 2011-09-23 14:24 青鸟在线投票系统\MyVote\src\action\RegisterAction.java
文件 4129 2011-09-23 10:14 青鸟在线投票系统\MyVote\src\action\SubjectAction.java
文件 2910 2011-09-23 14:39 青鸟在线投票系统\MyVote\src\action\VoteAction.java
文件 1550 2011-09-23 14:45 青鸟在线投票系统\MyVote\src\dao\ba
文件 943 2011-09-21 13:23 青鸟在线投票系统\MyVote\src\dao\Impl\ItemDaoImpl.java
文件 671 2011-09-21 12:31 青鸟在线投票系统\MyVote\src\dao\Impl\OptionDaoImpl.java
文件 1383 2011-09-21 13:22 青鸟在线投票系统\MyVote\src\dao\Impl\SubjectDaoImpl.java
文件 928 2011-09-22 12:35 青鸟在线投票系统\MyVote\src\dao\Impl\UserDaoImpl.java
文件 441 2011-09-21 08:13 青鸟在线投票系统\MyVote\src\dao\ItemDao.java
文件 374 2011-09-21 08:07 青鸟在线投票系统\MyVote\src\dao\OptionDao.java
文件 538 2011-09-21 13:11 青鸟在线投票系统\MyVote\src\dao\SubjectDao.java
文件 359 2011-09-21 12:02 青鸟在线投票系统\MyVote\src\dao\UserDao.java
文件 1150 2011-09-23 14:34 青鸟在线投票系统\MyVote\src\entity\VoteItem.hbm.xm
文件 1244 2011-09-20 15:06 青鸟在线投票系统\MyVote\src\entity\VoteItem.java
文件 1322 2011-09-23 14:35 青鸟在线投票系统\MyVote\src\entity\VoteOption.hbm.xm
文件 1588 2011-09-21 15:57 青鸟在线投票系统\MyVote\src\entity\VoteOption.java
文件 1378 2011-09-23 14:35 青鸟在线投票系统\MyVote\src\entity\VoteSubject.hbm.xm
文件 1466 2011-09-21 11:26 青鸟在线投票系统\MyVote\src\entity\VoteSubject.java
文件 1098 2011-09-23 14:48 青鸟在线投票系统\MyVote\src\entity\VoteUser.hbm.xm
文件 1326 2011-09-20 15:06 青鸟在线投票系统\MyVote\src\entity\VoteUser.java
文件 3208 2011-09-20 15:03 青鸟在线投票系统\MyVote\src\factory\HibernateSessionFactory.java
............此处省略247个文件信息
评论
共有 条评论