资源简介

该文档是SSH框架为基础实现的BBS论坛。其中有整合好的全面的SSH jar包,BBS前台,后台源码,这个小系统的报告,数据库关系分析等。 以下内容摘自报告目录部分(希望大家极力推荐哦): 第三章 SSH框架搭建 第四章 设计思路 4.1 需求分析 4.2 对象确定 4.3 确定实体对象之间的对应关系 4.4 Hibernate映射建表 4.5 配置Spring(AOP) 4.6 配置Spring(IOC) 4.7 大致分析业务逻辑定义部分Dao实现 4.8 测试Dao实现 4.9 分析JSP中要实现的功能在实体中建立实体方法 4.10 建立Struts2映射路径 4.11 分析实体中需要的业务逻辑在Service中定义相应的方法 4.12 配置 配置Spring(IOC) 4.13 重复上述思路直到实现基本功能 4.14 根据权限定义拦截器 4.15 测试系统相应的功能

资源截图

代码片段和文件信息

package com.mjs.dao;

import java.util.List;

import com.mjs.domain.Authority;

public interface AuthorityDao {
/**
 * 添加权限
 * @param authority
 */
public void addAuthority(Authority authority);
/**
 * 根据权限ID查找权限
 * @param authorityId
 * @return
 */
public Authority findAuthorityById(String authorityId);
/**
 * 根据ID更新权限
 * @param authorityId
 */
public void updateAuthorityById(Authority authority);
/**
 * 根据ID删除权限
 * @param authorityName
 */
public void deleteAuthorityByName(String authorityName);
public List findAllAuthority();
public Authority findAuthorityByName(String a);

}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2015-03-19 20:40  BBS课程设计完整版\
     目录           0  2015-03-18 21:51  BBS课程设计完整版\BBS\
     文件       13647  2015-03-18 21:50  BBS课程设计完整版\bbs.sql
     文件    20157486  2015-03-18 21:50  BBS课程设计完整版\BBS.war
     文件        2993  2015-03-16 17:00  BBS课程设计完整版\BBS\.classpath
     文件         547  2015-03-14 13:23  BBS课程设计完整版\BBS\.myhibernatedata
     文件         282  2015-03-18 16:12  BBS课程设计完整版\BBS\.mymetadata
     文件        1948  2015-03-14 13:23  BBS课程设计完整版\BBS\.project
     目录           0  2015-03-18 21:51  BBS课程设计完整版\BBS\.settings\
     文件         500  2015-03-13 17:38  BBS课程设计完整版\BBS\.settings\.jsdtscope
     文件         241  2015-03-17 19:43  BBS课程设计完整版\BBS\.settings\org.eclipse.core.resources.prefs
     文件         395  2015-03-13 17:38  BBS课程设计完整版\BBS\.settings\org.eclipse.jdt.core.prefs
     文件         599  2015-03-14 11:08  BBS课程设计完整版\BBS\.settings\org.eclipse.wst.common.component
     文件         252  2015-03-13 17:38  BBS课程设计完整版\BBS\.settings\org.eclipse.wst.common.project.facet.core.xml
     文件          49  2015-03-13 17:38  BBS课程设计完整版\BBS\.settings\org.eclipse.wst.jsdt.ui.superType.container
     文件           6  2015-03-13 17:38  BBS课程设计完整版\BBS\.settings\org.eclipse.wst.jsdt.ui.superType.name
     目录           0  2015-03-18 21:51  BBS课程设计完整版\BBS\config\
     目录           0  2015-03-18 21:51  BBS课程设计完整版\BBS\config\dtd\
     文件        2741  2015-03-14 13:30  BBS课程设计完整版\BBS\config\dtd\hibernate-configuration-3.0.dtd
     文件       45348  2015-03-14 13:30  BBS课程设计完整版\BBS\config\dtd\hibernate-mapping-3.0.dtd
     文件         829  2015-03-16 10:06  BBS课程设计完整版\BBS\config\dtd\xwork-validator-1.0.3.dtd
     目录           0  2015-03-18 21:51  BBS课程设计完整版\BBS\config\hibernate\
     文件        1805  2015-03-18 16:19  BBS课程设计完整版\BBS\config\hibernate\hibernate.cfg.xml
     目录           0  2015-03-18 21:51  BBS课程设计完整版\BBS\config\spring\
     文件        1151  2015-03-17 12:39  BBS课程设计完整版\BBS\config\spring\applicationContext-authority.xml
     文件        1536  2015-03-17 09:40  BBS课程设计完整版\BBS\config\spring\applicationContext-db.xml
     文件        1286  2015-03-18 13:01  BBS课程设计完整版\BBS\config\spring\applicationContext-invitation.xml
     文件        1090  2015-03-16 21:24  BBS课程设计完整版\BBS\config\spring\applicationContext-leave.xml
     文件        1253  2015-03-17 15:53  BBS课程设计完整版\BBS\config\spring\applicationContext-person.xml
     文件        1251  2015-03-17 13:23  BBS课程设计完整版\BBS\config\spring\applicationContext-role.xml
     文件        1132  2015-03-18 17:42  BBS课程设计完整版\BBS\config\spring\applicationContext.xml
............此处省略536个文件信息

评论

共有 条评论