资源简介
jsp博客系统 源代码+文件 可以用的 用jsp可以建一个简单的博客系统 还有很多功能可以自己加入 更加完善

代码片段和文件信息
/*
* This source file was generated by FireStorm/DAO 3.0 (build 99)
* on 26-十月-2005 at 09:50:56
*
* If you purchase a full license for FireStorm/DAO you can customize this file header.
*
* For more information please visit http://www.codefutures.com/products/firestorm
*/
package cn.wanfeng.myblog.dao;
import java.util.Date;
import cn.wanfeng.myblog.dto.*;
import cn.wanfeng.myblog.exceptions.*;
import java.sql.CallableStatement;
public interface ArticleDao
{
/**
* Inserts a new row in the Article table.
*/
public ArticlePk insert(Article dto) throws ArticleDaoException;
/**
* Updates a single row in the Article table.
*/
public void update(ArticlePk pk Article dto) throws ArticleDaoException;
/**
* Deletes a single row in the Article table.
*/
public void delete(ArticlePk pk) throws ArticleDaoException;
/**
* Returns the rows from the Article table that matches the specified primary-key value.
*/
public Article findByPrimaryKey(ArticlePk pk) throws ArticleDaoException;
/**
* Returns all rows from the Article table that match the criteria ‘‘.
*/
public Article[] findAll() throws ArticleDaoException;
/**
* Returns all rows from the Article table that match the criteria ‘ArticleID = :articleID‘.
*/
public Article findByPrimaryKey(int articleID) throws ArticleDaoException;
/**
* Returns all rows from the Article table that match the criteria ‘CategoryID = :categoryID‘.
*/
public Article[] findByCategory(int categoryID) throws ArticleDaoException;
/**
* Returns all rows from the Article table that match the criteria ‘ArticleID = :articleID‘.
*/
public Article[] findWhereArticleIDEquals(int articleID) throws ArticleDaoException;
/**
* Returns all rows from the Article table that match the criteria ‘CategoryID = :categoryID‘.
*/
public Article[] findWhereCategoryIDEquals(int categoryID) throws ArticleDaoException;
/**
* Returns all rows from the Article table that match the criteria ‘Subject = :subject‘.
*/
public Article[] findWhereSubjectEquals(String subject) throws ArticleDaoException;
/**
* Returns all rows from the Article table that match the criteria ‘Content = :content‘.
*/
public Article[] findWhereContentEquals(String content) throws ArticleDaoException;
/**
* Returns all rows from the Article table that match the criteria ‘PublishTime = :publishTime‘.
*/
public Article[] findWherePublishTimeEquals(Date publishTime) throws ArticleDaoException;
/**
* Sets the value of maxRows
*/
public void setMaxRows(int maxRows);
/**
* Gets the value of maxRows
*/
public int getMaxRows();
/**
* Returns all rows from the Article table that match the specified arbitrary SQL statement
*/
public Article[] findByDynamicSelect(String sql object[] sqlParams) throws ArticleDaoException;
/**
* Returns all rows from the Article table that ma
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 552 2005-10-25 12:39 BLOG\CodeSource\.classpath
文件 291 2005-10-24 18:38 BLOG\CodeSource\.myme
文件 1346 2005-10-24 18:41 BLOG\CodeSource\.project
文件 3154 2005-10-26 09:50 BLOG\CodeSource\src\cn\wanfeng\myblog\dao\ArticleDao.java
文件 2966 2005-10-26 09:50 BLOG\CodeSource\src\cn\wanfeng\myblog\dao\BlogDao.java
文件 2581 2005-10-26 09:50 BLOG\CodeSource\src\cn\wanfeng\myblog\dao\CategoryDao.java
文件 3525 2005-10-26 09:50 BLOG\CodeSource\src\cn\wanfeng\myblog\dao\DtpropertiesDao.java
文件 3048 2005-10-26 09:50 BLOG\CodeSource\src\cn\wanfeng\myblog\dao\EssayDao.java
文件 2963 2005-10-26 09:50 BLOG\CodeSource\src\cn\wanfeng\myblog\dao\FeedbackDao.java
文件 2746 2005-10-26 09:50 BLOG\CodeSource\src\cn\wanfeng\myblog\dao\HrefDao.java
文件 2928 2005-10-26 09:50 BLOG\CodeSource\src\cn\wanfeng\myblog\dao\PictureDao.java
文件 8386 2005-10-26 09:50 BLOG\CodeSource\src\cn\wanfeng\myblog\dto\Article.java
文件 2431 2005-10-26 09:50 BLOG\CodeSource\src\cn\wanfeng\myblog\dto\ArticlePk.java
文件 8919 2005-10-26 09:50 BLOG\CodeSource\src\cn\wanfeng\myblog\dto\Blog.java
文件 2308 2005-10-26 09:50 BLOG\CodeSource\src\cn\wanfeng\myblog\dto\BlogPk.java
文件 5243 2005-10-26 09:50 BLOG\CodeSource\src\cn\wanfeng\myblog\dto\Category.java
文件 2472 2005-10-26 09:50 BLOG\CodeSource\src\cn\wanfeng\myblog\dto\CategoryPk.java
文件 10316 2005-10-26 09:50 BLOG\CodeSource\src\cn\wanfeng\myblog\dto\Dtproperties.java
文件 2858 2005-10-26 09:50 BLOG\CodeSource\src\cn\wanfeng\myblog\dto\DtpropertiesPk.java
文件 8294 2005-10-26 09:50 BLOG\CodeSource\src\cn\wanfeng\myblog\dto\Essay.java
文件 2349 2005-10-26 09:50 BLOG\CodeSource\src\cn\wanfeng\myblog\dto\EssayPk.java
文件 6995 2005-10-26 09:50 BLOG\CodeSource\src\cn\wanfeng\myblog\dto\Feedback.java
文件 2441 2005-10-26 09:50 BLOG\CodeSource\src\cn\wanfeng\myblog\dto\FeedbackPk.java
文件 6608 2005-10-26 09:50 BLOG\CodeSource\src\cn\wanfeng\myblog\dto\Href.java
文件 2308 2005-10-26 09:50 BLOG\CodeSource\src\cn\wanfeng\myblog\dto\HrefPk.java
文件 7015 2005-10-26 09:50 BLOG\CodeSource\src\cn\wanfeng\myblog\dto\Picture.java
文件 2431 2005-10-26 09:50 BLOG\CodeSource\src\cn\wanfeng\myblog\dto\PicturePk.java
文件 729 2005-10-26 09:50 BLOG\CodeSource\src\cn\wanfeng\myblog\exceptions\ArticleDaoException.java
文件 714 2005-10-26 09:50 BLOG\CodeSource\src\cn\wanfeng\myblog\exceptions\BlogDaoException.java
文件 734 2005-10-26 09:50 BLOG\CodeSource\src\cn\wanfeng\myblog\exceptions\CategoryDaoException.java
............此处省略389个文件信息
相关资源
- 微博系统(Java源码,servlet+jsp),适
- JSP企业人事管理系统设计(源代码+论
- 实现一个图书管理系统
- JAVA JSP公司财务管理系统 源代码 论文
- JSP+MYSQL旅行社管理信息系统
- JSP,SQL,MVC的选课系统
- 基于JSP的学生宿舍管理系统(源码 数
- JSP选课管理系统
- mysql jsp网站源码下载
- JSP做的化妆品商城
- Jsp购物车实例
- 基于JSP的校友信息管理系统(添加数
- 基于jsp的bbs论坛 非常详细
- jsp oracle通讯录
- JSP学生信息管理系统 Mysql数据库
- 使用jsp servlet做的投票系统
- JSP登陆验证 实现JSP用户名 密码 验
- jsp基于servlet 图书馆管理系统
- jsp学生成绩管理系统.rar
- 在线考试系统源代码(jsp)
- 超级好的纯jsp写的聊天室
- JSP 网上购物网页项目
- JSP+mysql新闻发布系统.rar
- jsp 学生信息管理系统设计与实现
- jsp与SQL Server数据库实现的客户注册登
- 简易教学管理系统(jsp spring struts h
- 学生信息管理系统 JSP MySQL
- jsp ajax 三级联动菜单
- jsp新闻公告与最新消息系统(具备添
- JSP课程设计-留言本 jsp mysql tomcat实现
评论
共有 条评论