how2j.cn

步骤 1 : PropertyValueDAO.java   
步骤 2 : 基本的CRUD操作   
步骤 3 : 非CRUD方法   

步骤 1 :

PropertyValueDAO.java

edit
增值内容,请先登录
完整的J2EE模仿天猫项目,使用J2SE、前端技术(包含所有前端jsp文件)、J2EE一整套技术栈, 从无到有涵盖全部147个知识点,475个开发步骤, 充实J2EE项目经验,为简历加上一个有吸引力的砝码.
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢
package tmall.dao; import java.sql.Connection; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import java.sql.Statement; import java.util.ArrayList; import java.util.List; import tmall.bean.Product; import tmall.bean.Property; import tmall.bean.PropertyValue; import tmall.util.DBUtil; public class PropertyValueDAO { public int getTotal() { int total = 0; try (Connection c = DBUtil.getConnection(); Statement s = c.createStatement();) { String sql = "select count(*) from PropertyValue"; ResultSet rs = s.executeQuery(sql); while (rs.next()) { total = rs.getInt(1); } } catch (SQLException e) { e.printStackTrace(); } return total; } public void add(PropertyValue bean) { String sql = "insert into PropertyValue values(null,?,?,?)"; try (Connection c = DBUtil.getConnection(); PreparedStatement ps = c.prepareStatement(sql);) { ps.setInt(1, bean.getProduct().getId()); ps.setInt(2, bean.getProperty().getId()); ps.setString(3, bean.getValue()); ps.execute(); ResultSet rs = ps.getGeneratedKeys(); if (rs.next()) { int id = rs.getInt(1); bean.setId(id); } } catch (SQLException e) { e.printStackTrace(); } } public void update(PropertyValue bean) { String sql = "update PropertyValue set pid= ?, ptid=?, value=? where id = ?"; try (Connection c = DBUtil.getConnection(); PreparedStatement ps = c.prepareStatement(sql);) { ps.setInt(1, bean.getProduct().getId()); ps.setInt(2, bean.getProperty().getId()); ps.setString(3, bean.getValue()); ps.setInt(4, bean.getId()); ps.execute(); } catch (SQLException e) { e.printStackTrace(); } } public void delete(int id) { try (Connection c = DBUtil.getConnection(); Statement s = c.createStatement();) { String sql = "delete from PropertyValue where id = " + id; s.execute(sql); } catch (SQLException e) { e.printStackTrace(); } } public PropertyValue get(int id) { PropertyValue bean = new PropertyValue(); try (Connection c = DBUtil.getConnection(); Statement s = c.createStatement();) { String sql = "select * from PropertyValue where id = " + id; ResultSet rs = s.executeQuery(sql); if (rs.next()) { int pid = rs.getInt("pid"); int ptid = rs.getInt("ptid"); String value = rs.getString("value"); Product product = new ProductDAO().get(pid); Property property = new PropertyDAO().get(ptid); bean.setProduct(product); bean.setProperty(property); bean.setValue(value); bean.setId(id); } } catch (SQLException e) { e.printStackTrace(); } return bean; } public PropertyValue get(int ptid, int pid ) { PropertyValue bean = null; try (Connection c = DBUtil.getConnection(); Statement s = c.createStatement();) { String sql = "select * from PropertyValue where ptid = " + ptid + " and pid = " + pid; ResultSet rs = s.executeQuery(sql); if (rs.next()) { bean= new PropertyValue(); int id = rs.getInt("id"); String value = rs.getString("value"); Product product = new ProductDAO().get(pid); Property property = new PropertyDAO().get(ptid); bean.setProduct(product); bean.setProperty(property); bean.setValue(value); bean.setId(id); } } catch (SQLException e) { e.printStackTrace(); } return bean; } public List<PropertyValue> list() { return list(0, Short.MAX_VALUE); } public List<PropertyValue> list(int start, int count) { List<PropertyValue> beans = new ArrayList<PropertyValue>(); String sql = "select * from PropertyValue order by id desc limit ?,? "; try (Connection c = DBUtil.getConnection(); PreparedStatement ps = c.prepareStatement(sql);) { ps.setInt(1, start); ps.setInt(2, count); ResultSet rs = ps.executeQuery(); while (rs.next()) { PropertyValue bean = new PropertyValue(); int id = rs.getInt(1); int pid = rs.getInt("pid"); int ptid = rs.getInt("ptid"); String value = rs.getString("value"); Product product = new ProductDAO().get(pid); Property property = new PropertyDAO().get(ptid); bean.setProduct(product); bean.setProperty(property); bean.setValue(value); bean.setId(id); beans.add(bean); } } catch (SQLException e) { e.printStackTrace(); } return beans; } public void init(Product p) { List<Property> pts= new PropertyDAO().list(p.getCategory().getId()); for (Property pt: pts) { PropertyValue pv = get(pt.getId(),p.getId()); if(null==pv){ pv = new PropertyValue(); pv.setProduct(p); pv.setProperty(pt); this.add(pv); } } } public List<PropertyValue> list(int pid) { List<PropertyValue> beans = new ArrayList<PropertyValue>(); String sql = "select * from PropertyValue where pid = ? order by ptid desc"; try (Connection c = DBUtil.getConnection(); PreparedStatement ps = c.prepareStatement(sql);) { ps.setInt(1, pid); ResultSet rs = ps.executeQuery(); while (rs.next()) { PropertyValue bean = new PropertyValue(); int id = rs.getInt(1); int ptid = rs.getInt("ptid"); String value = rs.getString("value"); Product product = new ProductDAO().get(pid); Property property = new PropertyDAO().get(ptid); bean.setProduct(product); bean.setProperty(property); bean.setValue(value); bean.setId(id); beans.add(bean); } } catch (SQLException e) { e.printStackTrace(); } return beans; } }
步骤 2 :

基本的CRUD操作

edit
增值内容,请先登录
完整的J2EE模仿天猫项目,使用J2SE、前端技术(包含所有前端jsp文件)、J2EE一整套技术栈, 从无到有涵盖全部147个知识点,475个开发步骤, 充实J2EE项目经验,为简历加上一个有吸引力的砝码.
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢
增值内容,请先登录
完整的J2EE模仿天猫项目,使用J2SE、前端技术(包含所有前端jsp文件)、J2EE一整套技术栈, 从无到有涵盖全部147个知识点,475个开发步骤, 充实J2EE项目经验,为简历加上一个有吸引力的砝码.
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢


HOW2J公众号,关注后实时获知最新的教程和优惠活动,谢谢。


问答区域    
2021-05-06 init()方法的实际应用场景是什么?
Charles049

不是很懂为什么要初始化属性值,属性值在添加的时候不是已经根据产品以及属性添加了吗?




1 个答案

how2j
答案时间:2021-05-07
带着这个问题往后做把。 等到了运用这个场景的地方就明白了。



回答已经提交成功,正在审核。 请于 我的回答 处查看回答记录,谢谢
答案 或者 代码至少填写一项, 如果是自己有问题,请重新提问,否则站长有可能看不到




2020-07-27 初始化函数中,null == pv返回的是false
arsoooo

我在创建一个新产品的时候进行初始化属性,初始化不成功。 自己测试了一下,pv.id = 0, pv.getProduct() = null,就是查到的都是空值,但是pv本身不等于null? 所以初始化判断的时候(null == pv)返回的是false,导致初始化失败。不知道是为什么,代码没有改动,




2 个答案

arsoooo
答案时间:2020-07-28
站长是在editPropertyValue中进行init,调用了这个函数, 然后我跳转到这个init函数,判断就是判断不出来, 我改成(null == pv.getProduct() && 0 == pv.getId())这样判断了。。。。

how2j
答案时间:2020-07-28
属性值初始化的章节在这里: https://how2j.cn/k/tmall-j2ee/tmall-j2ee-1012/1012.html 试试比较这里的可运行项目呢,看看是否有出入



回答已经提交成功,正在审核。 请于 我的回答 处查看回答记录,谢谢
答案 或者 代码至少填写一项, 如果是自己有问题,请重新提问,否则站长有可能看不到




2020-05-26 List<Property> list = new PropertyDao().list(product.getCategory().getId());
2019-12-03 init 里面假如没有这个属性值,就新建一个属性值,可是这个属性值的value属性没有设置啊
2019-08-16 方法是否可以设置成静态


提问太多,页面渲染太慢,为了加快渲染速度,本页最多只显示几条提问。还有 12 条以前的提问,请 点击查看

提问之前请登陆
提问已经提交成功,正在审核。 请于 我的提问 处查看提问记录,谢谢
关于 实践项目-天猫整站J2EE-PropertyValueDAO 的提问

尽量提供截图代码异常信息,有助于分析和解决问题。 也可进本站QQ群交流: 578362961
提问尽量提供完整的代码,环境描述,越是有利于问题的重现,您的问题越能更快得到解答。
对教程中代码有疑问,请提供是哪个步骤,哪一行有疑问,这样便于快速定位问题,提高问题得到解答的速度
在已经存在的几千个提问里,有相当大的比例,是因为使用了和站长不同版本的开发环境导致的,比如 jdk, eclpise, idea, mysql,tomcat 等等软件的版本不一致。
请使用和站长一样的版本,可以节约自己大量的学习时间。 站长把教学中用的软件版本整理了,都统一放在了这里, 方便大家下载: https://how2j.cn/k/helloworld/helloworld-version/1718.html

上传截图