⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 authordao.java

📁 struts+hibernate+spring的blog,本人也是下载的
💻 JAVA
字号:
package com.weblog.dao;import java.util.List;import com.weblog.model.Author;public interface AuthorDao extends DAO {    /**     * Retrieves all of the authors     */    public List getAuthors();    /**     * Gets author's information based on primary key. An     * ObjectRetrievalFailureException Runtime Exception is thrown if      * nothing is found.     *      * @param id the author's id     * @return author populated author object     */    public Author getAuthor( Long id);    /**     * Saves a author's information     * @param author the object to be saved     */        public void saveAuthor(Author author);    /**     * Removes a author from the database by id     * @param id the author's id     */    public void removeAuthor( Long id);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -