資源簡介
PetStore是典型的電子商務項目,是現在很多電商平臺的雛形。本代碼采用Java Swing技術實現PetStore項目。它是《Java從小白到大牛》第29章實戰項目(PetStore寵物商店)配套源代碼。?
?【相關Java視頻課程】:
1、http://www.zhijieketang.com/classroom/6/introduction
?【配套電子書】網址:
1、圖靈社區:http://www.ituring.com.cn/book/2480
2、百度閱讀:https://yuedu.baidu.com/ebook/7c1499987e192279168884868762caaedd33ba00

代碼片段和文件信息
/*
*?Created?by?智捷課堂
*?本書網站:www.51work6.com?
*?智捷課堂在線課堂:www.zhijieketang.com
*?智捷課堂微信公共號:zhijieketang
*?郵箱:eorient@sina.com
*?Java讀者服務QQ群:547370999
*?【配套電子書】網址:
*???????圖靈社區:
*???????http://www.ituring.com.cn/book/2480
*???????百度閱讀:
*???????https://yuedu.baidu.com/ebook/7c1499987e192279168884868762caaedd33ba00?
*/
package?com.a51work6.jpetstore.dao;
import?java.util.List;
import?com.a51work6.jpetstore.domain.Account;
//用戶管理DAO
public?interface?AccountDao?{
//?查詢所有的用戶信息
List?findAll();
//?根據主鍵查詢用戶信息
Account?findById(String?userid);
//?創建用戶信息
int?create(Account?account);
//?修改用戶信息
int?modify(Account?account);
//?刪除用戶信息
int?remove(Account?account);
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2017-09-13?00:48??PetStore\
?????文件?????????378??2017-06-26?18:33??PetStore\.classpath
?????文件?????????384??2017-06-29?16:02??PetStore\.project
?????目錄???????????0??2017-09-13?00:48??PetStore\.settings\
?????文件??????????82??2017-06-29?19:37??PetStore\.settings\org.eclipse.core.resources.prefs
?????文件?????????598??2017-06-26?14:51??PetStore\.settings\org.eclipse.jdt.core.prefs
?????目錄???????????0??2017-09-13?00:48??PetStore\bin\
?????目錄???????????0??2017-09-13?00:48??PetStore\bin\com\
?????目錄???????????0??2017-09-13?00:48??PetStore\bin\com\a51work6\
?????目錄???????????0??2017-09-13?00:48??PetStore\bin\com\a51work6\jpetstore\
?????目錄???????????0??2017-09-13?00:48??PetStore\bin\com\a51work6\jpetstore\dao\
?????目錄???????????0??2017-09-13?00:48??PetStore\bin\com\a51work6\jpetstore\dao\mysql\
?????文件?????????172??2017-06-29?21:27??PetStore\bin\com\a51work6\jpetstore\dao\mysql\config.properties
?????目錄???????????0??2017-09-13?00:48??PetStore\bin\com\a51work6\jpetstore\domain\
?????目錄???????????0??2017-09-13?00:48??PetStore\bin\com\a51work6\jpetstore\ui\
?????目錄???????????0??2017-09-13?00:48??PetStore\bin\images\
?????文件???????12009??2017-06-26?19:30??PetStore\bin\images\bird1.gif
?????文件????????3364??2017-06-26?19:30??PetStore\bin\images\bird1.jpg
?????文件???????11376??2017-06-26?19:30??PetStore\bin\images\bird2.gif
?????文件????????3391??2017-06-26?19:30??PetStore\bin\images\bird2.jpg
?????文件????????5687??2017-06-26?19:30??PetStore\bin\images\bird3.gif
?????文件????????6310??2017-06-26?19:30??PetStore\bin\images\bird4.gif
?????文件????????5610??2017-06-26?19:30??PetStore\bin\images\bird5.gif
?????文件????????4974??2017-06-26?19:30??PetStore\bin\images\bird6.gif
?????文件???????12761??2017-06-26?19:30??PetStore\bin\images\cat1.gif
?????文件????????3859??2017-06-26?19:30??PetStore\bin\images\cat1.jpg
?????文件???????12688??2017-06-26?19:30??PetStore\bin\images\cat2.gif
?????文件????????3721??2017-06-26?19:30??PetStore\bin\images\cat2.jpg
?????文件????????5024??2017-06-26?19:30??PetStore\bin\images\cat3.gif
?????文件????????4862??2017-06-26?19:30??PetStore\bin\images\cat4.gif
?????文件???????12099??2017-06-26?19:30??PetStore\bin\images\dog1.gif
............此處省略99個文件信息
評論
共有 條評論