资源简介
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 web校园二手交易平台网站
- jsp会员管理系统 完整版
-
JAVA(jsp+servlet+ja
vasc ript)超市商品 - JAVA JSP牛奶配送管理系统 源代码 论文
- JAVA JSP景区订票系统 源代码 论文
- JSP+SQL景区售票系统
- 基于MySQL+JSP的公交查询系统
- jsp青鸟网上书店项目源码带数据库
- JSP网络编程从基础到实践第2版实战项
- 基于jsp的班级信息管理系统
- poi+jsp+servlet 实现excel的上传的
- jsp网上购物系统完整版
- 基于jsp的微博
- jsp购物车系统mysql数据库
- 基于Jsp网络在线考试系统源码
- 基于JSP的办公自动化系统
- jsp订单管理系统,管理订单,增删改
- jsp/servlet购物车源码
- 基于jsp的网络在线订票系统
- Java项目 JSP实现在线订餐系统 数据库
- JSP订单管理系统(JSP+SQL Server)
- JSP库存管理系统(JSP+SQL Server)
- jsp网页超级给力的。自己期末作业
- 基于mvc的jsp开发教材学生信息管理系
- jsp+servlet请假系统
- JSP MYSQL汽车票销售系统 源代码
- JSP+MYSQL个人日程管理系统-毕业设计
- jsp毕业生离校系统设计与实现mysql版本
- JSP应用与开发技术第2版源码
- 简易图书管理系统主要是jsp的练习
评论
共有 条评论