步骤 2 : 模仿和排错 步骤 3 : 页面截图 步骤 4 : PropertyValue 步骤 5 : PropertyValueDAO 步骤 6 : PropertyDAO 步骤 7 : PropertyService 步骤 8 : PropertyValueService 步骤 9 : PropertyValueController 步骤 10 : editPropertyValue.html 步骤 11 : 编辑功能讲解 步骤 12 : 修改功能讲解 步骤 13 : 删除,增加功能不需要
增值内容,请先登录
完整的 Springboot 模仿天猫项目,使用 Springboot 、Vue.js、shiro、redis、elasticsearch 等一整套技术栈, 从无到有涵盖全部129个知识点,565个开发步骤, 充实 Springboot 项目经验,为简历加上一个有吸引力的砝码.
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢
增值内容,请先登录
完整的 Springboot 模仿天猫项目,使用 Springboot 、Vue.js、shiro、redis、elasticsearch 等一整套技术栈, 从无到有涵盖全部129个知识点,565个开发步骤, 充实 Springboot 项目经验,为简历加上一个有吸引力的砝码.
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢
增值内容,请先登录
完整的 Springboot 模仿天猫项目,使用 Springboot 、Vue.js、shiro、redis、elasticsearch 等一整套技术栈, 从无到有涵盖全部129个知识点,565个开发步骤, 充实 Springboot 项目经验,为简历加上一个有吸引力的砝码.
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢
增值内容,请先登录
完整的 Springboot 模仿天猫项目,使用 Springboot 、Vue.js、shiro、redis、elasticsearch 等一整套技术栈, 从无到有涵盖全部129个知识点,565个开发步骤, 充实 Springboot 项目经验,为简历加上一个有吸引力的砝码.
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢
package com.how2java.tmall.pojo;
import javax.persistence.Column;
import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.JoinColumn;
import javax.persistence.ManyToOne;
import javax.persistence.Table;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
@Entity
@Table(name = "propertyvalue")
@JsonIgnoreProperties({ "handler","hibernateLazyInitializer" })
public class PropertyValue {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "id")
private int id;
@ManyToOne
@JoinColumn(name="pid")
private Product product;
@ManyToOne
@JoinColumn(name="ptid")
private Property property;
private String value;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value = value;
}
public Product getProduct() {
return product;
}
public void setProduct(Product product) {
this.product = product;
}
public Property getProperty() {
return property;
}
public void setProperty(Property property) {
this.property = property;
}
@Override
public String toString() {
return "PropertyValue [id=" + id + ", product=" + product + ", property=" + property + ", value=" + value + "]";
}
}
增值内容,请先登录
完整的 Springboot 模仿天猫项目,使用 Springboot 、Vue.js、shiro、redis、elasticsearch 等一整套技术栈, 从无到有涵盖全部129个知识点,565个开发步骤, 充实 Springboot 项目经验,为简历加上一个有吸引力的砝码.
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢
package com.how2java.tmall.dao;
import java.util.List;
import org.springframework.data.jpa.repository.JpaRepository;
import com.how2java.tmall.pojo.Product;
import com.how2java.tmall.pojo.Property;
import com.how2java.tmall.pojo.PropertyValue;
public interface PropertyValueDAO extends JpaRepository<PropertyValue,Integer>{
List<PropertyValue> findByProductOrderByIdDesc(Product product);
PropertyValue getByPropertyAndProduct(Property property, Product product);
}
package com.how2java.tmall.dao; import java.util.List; import org.springframework.data.jpa.repository.JpaRepository; import com.how2java.tmall.pojo.Product; import com.how2java.tmall.pojo.Property; import com.how2java.tmall.pojo.PropertyValue; public interface PropertyValueDAO extends JpaRepository<PropertyValue,Integer>{ List<PropertyValue> findByProductOrderByIdDesc(Product product); PropertyValue getByPropertyAndProduct(Property property, Product product); }
增值内容,请先登录
完整的 Springboot 模仿天猫项目,使用 Springboot 、Vue.js、shiro、redis、elasticsearch 等一整套技术栈, 从无到有涵盖全部129个知识点,565个开发步骤, 充实 Springboot 项目经验,为简历加上一个有吸引力的砝码.
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢
package com.how2java.tmall.dao;
import java.util.List;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.data.jpa.repository.JpaRepository;
import com.how2java.tmall.pojo.Category;
import com.how2java.tmall.pojo.Property;
public interface PropertyDAO extends JpaRepository<Property,Integer>{
Page<Property> findByCategory(Category category, Pageable pageable);
List<Property> findByCategory(Category category);
}
package com.how2java.tmall.dao; import java.util.List; import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; import org.springframework.data.jpa.repository.JpaRepository; import com.how2java.tmall.pojo.Category; import com.how2java.tmall.pojo.Property; public interface PropertyDAO extends JpaRepository<Property,Integer>{ Page<Property> findByCategory(Category category, Pageable pageable); List<Property> findByCategory(Category category); }
增值内容,请先登录
完整的 Springboot 模仿天猫项目,使用 Springboot 、Vue.js、shiro、redis、elasticsearch 等一整套技术栈, 从无到有涵盖全部129个知识点,565个开发步骤, 充实 Springboot 项目经验,为简历加上一个有吸引力的砝码.
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢
package com.how2java.tmall.service;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.cache.annotation.CacheConfig;
import org.springframework.cache.annotation.CacheEvict;
import org.springframework.cache.annotation.Cacheable;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.PageRequest;
import org.springframework.data.domain.Pageable;
import org.springframework.data.domain.Sort;
import org.springframework.stereotype.Service;
import com.how2java.tmall.dao.PropertyDAO;
import com.how2java.tmall.pojo.Category;
import com.how2java.tmall.pojo.Property;
import com.how2java.tmall.util.Page4Navigator;
@Service
public class PropertyService {
@Autowired PropertyDAO propertyDAO;
@Autowired CategoryService categoryService;
public void add(Property bean) {
propertyDAO.save(bean);
}
public void delete(int id) {
propertyDAO.delete(id);
}
public Property get(int id) {
return propertyDAO.findOne(id);
}
public void update(Property bean) {
propertyDAO.save(bean);
}
public Page4Navigator<Property> list(int cid, int start, int size,int navigatePages) {
Category category = categoryService.get(cid);
Sort sort = new Sort(Sort.Direction.DESC, "id");
Pageable pageable = new PageRequest(start, size, sort);
Page<Property> pageFromJPA =propertyDAO.findByCategory(category,pageable);
return new Page4Navigator<>(pageFromJPA,navigatePages);
}
public List<Property> listByCategory(Category category){
return propertyDAO.findByCategory(category);
}
}
增值内容,请先登录
完整的 Springboot 模仿天猫项目,使用 Springboot 、Vue.js、shiro、redis、elasticsearch 等一整套技术栈, 从无到有涵盖全部129个知识点,565个开发步骤, 充实 Springboot 项目经验,为简历加上一个有吸引力的砝码.
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢
package com.how2java.tmall.service;
import com.how2java.tmall.dao.PropertyValueDAO;
import com.how2java.tmall.pojo.Product;
import com.how2java.tmall.pojo.Property;
import com.how2java.tmall.pojo.PropertyValue;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.List;
@Service
public class PropertyValueService {
@Autowired PropertyValueDAO propertyValueDAO;
@Autowired PropertyService propertyService;
public void update(PropertyValue bean) {
propertyValueDAO.save(bean);
}
public void init(Product product) {
List<Property> propertys= propertyService.listByCategory(product.getCategory());
for (Property property: propertys) {
PropertyValue propertyValue = getByPropertyAndProduct(product, property);
if(null==propertyValue){
propertyValue = new PropertyValue();
propertyValue.setProduct(product);
propertyValue.setProperty(property);
propertyValueDAO.save(propertyValue);
}
}
}
public PropertyValue getByPropertyAndProduct(Product product, Property property) {
return propertyValueDAO.getByPropertyAndProduct(property,product);
}
public List<PropertyValue> list(Product product) {
return propertyValueDAO.findByProductOrderByIdDesc(product);
}
}
增值内容,请先登录
完整的 Springboot 模仿天猫项目,使用 Springboot 、Vue.js、shiro、redis、elasticsearch 等一整套技术栈, 从无到有涵盖全部129个知识点,565个开发步骤, 充实 Springboot 项目经验,为简历加上一个有吸引力的砝码.
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢
package com.how2java.tmall.web;
import java.util.List;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PutMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RestController;
import com.how2java.tmall.pojo.Product;
import com.how2java.tmall.pojo.PropertyValue;
import com.how2java.tmall.service.ProductService;
import com.how2java.tmall.service.PropertyValueService;
@RestController
public class PropertyValueController {
@Autowired PropertyValueService propertyValueService;
@Autowired ProductService productService;
@GetMapping("/products/{pid}/propertyValues")
public List<PropertyValue> list(@PathVariable("pid") int pid) throws Exception {
Product product = productService.get(pid);
propertyValueService.init(product);
List<PropertyValue> propertyValues = propertyValueService.list(product);
return propertyValues;
}
@PutMapping("/propertyValues")
public Object update(@RequestBody PropertyValue bean) throws Exception {
propertyValueService.update(bean);
return bean;
}
}
增值内容,请先登录
完整的 Springboot 模仿天猫项目,使用 Springboot 、Vue.js、shiro、redis、elasticsearch 等一整套技术栈, 从无到有涵盖全部129个知识点,565个开发步骤, 充实 Springboot 项目经验,为简历加上一个有吸引力的砝码.
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢
<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<head th:include="include/admin/adminHeader::html('产品属性管理')" ></head>
<body>
<div th:replace="include/admin/adminNavigator::html" ></div>
<script>
$(function(){
var pid = getUrlParms("pid");
var data4Vue = {
uri:'propertyValues',
beans: [],
product: '',
category:'',
};
//ViewModel
var vue = new Vue({
el: '#workingArea',
data: data4Vue,
mounted:function(){ //mounted 表示这个 Vue 对象加载成功了
this.getProduct(pid);
this.list();
},
methods: {
list:function(){
var url = "products/"+pid+"/"+ this.uri;
axios.get(url).then(function(response) {
vue.beans = response.data;
});
},
getProduct:function(pid){
var url = "products/"+pid;
axios.get(url).then(function(response) {
vue.product = response.data;
vue.category = vue.product.category;
})
},
update:function(bean){
var url = this.uri;
var id = bean.id;
$("#pvid"+bean.id).css("border","2px solid yellow");
axios.put(url,bean).then(function(response) {
if(bean.id==response.data.id)
$("#pvid"+bean.id).css("border","2px solid green");
else
$("#pvid"+bean.id).css("border","2px solid red");
});
}
}
});
});
</script>
<div id="workingArea" >
<ol class="breadcrumb">
<li><a href="admin_category_list">所有分类</a></li>
<li><a :href="'admin_product_list?cid='+category.id">{{category.name}}</a></li>
<li class="active">{{product.name}}</li>
<li class="active">产品属性管理</li>
</ol>
<div class="editPVDiv">
<div v-for="bean in beans" class="eachPV">
<span class="pvName" >{{bean.property.name}}</span>
<span class="pvValue"><input class="pvValue" :id="'pvid'+bean.id" type="text" v-model="bean.value" @keyup="update(bean)"></span>
</div>
<div style="clear:both"></div>
</div>
</div>
<div th:replace="include/admin/adminFooter::html" ></div>
</body>
</html>
增值内容,请先登录
完整的 Springboot 模仿天猫项目,使用 Springboot 、Vue.js、shiro、redis、elasticsearch 等一整套技术栈, 从无到有涵盖全部129个知识点,565个开发步骤, 充实 Springboot 项目经验,为简历加上一个有吸引力的砝码.
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢
@GetMapping("/products/{pid}/propertyValues")
public List<PropertyValue> list(@PathVariable("pid") int pid) throws Exception {
Product product = productService.get(pid);
propertyValueService.init(product);
List<PropertyValue> propertyValues = propertyValueService.list(product);
return propertyValues;
}
list:function(){
var url = "products/"+pid+"/"+ this.uri;
axios.get(url).then(function(response) {
vue.beans = response.data;
});
},
<div v-for="bean in beans" class="eachPV">
<span class="pvName" >{{bean.property.name}}</span>
<span class="pvValue"><input class="pvValue" :id="'pvid'+bean.id" type="text" v-model="bean.value" @keyup="update(bean)"></span>
</div>
增值内容,请先登录
完整的 Springboot 模仿天猫项目,使用 Springboot 、Vue.js、shiro、redis、elasticsearch 等一整套技术栈, 从无到有涵盖全部129个知识点,565个开发步骤, 充实 Springboot 项目经验,为简历加上一个有吸引力的砝码.
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢
update:function(bean){
var url = this.uri;
var id = bean.id;
$("#pvid"+bean.id).css("border","2px solid yellow");
axios.put(url,bean).then(function(response) {
if(bean.id==response.data.id)
$("#pvid"+bean.id).css("border","2px solid green");
else
$("#pvid"+bean.id).css("border","2px solid red");
});
}
update:function(bean){ var url = this.uri; var id = bean.id; $("#pvid"+bean.id).css("border","2px solid yellow"); axios.put(url,bean).then(function(response) { if(bean.id==response.data.id) $("#pvid"+bean.id).css("border","2px solid green"); else $("#pvid"+bean.id).css("border","2px solid red"); }); }
@PutMapping("/propertyValues")
public Object update(@RequestBody PropertyValue bean) throws Exception {
propertyValueService.update(bean);
return bean;
}
@PutMapping("/propertyValues") public Object update(@RequestBody PropertyValue bean) throws Exception { propertyValueService.update(bean); return bean; }
增值内容,请先登录
完整的 Springboot 模仿天猫项目,使用 Springboot 、Vue.js、shiro、redis、elasticsearch 等一整套技术栈, 从无到有涵盖全部129个知识点,565个开发步骤, 充实 Springboot 项目经验,为简历加上一个有吸引力的砝码.
增值内容,点击购买
使用爬虫已经被系统记录,请勿使用爬虫,增大封号风险。 如果是误封 ,请联系站长,谢谢
HOW2J公众号,关注后实时获知最新的教程和优惠活动,谢谢。
问答区域
2021-10-25
更新属性值时是否有必要判断bean.id==response.data.id
回答已经提交成功,正在审核。 请于 我的回答 处查看回答记录,谢谢
2020-07-21
editPropertyValue.html的function list()和getProduct(pid),函数体内都需要pid,为什么getProduct需要形参pid,而list()则不需要?
回答已经提交成功,正在审核。 请于 我的回答 处查看回答记录,谢谢
2020-05-23
如果删除分类管理里面的某一项属性property,然后再来展示产品的propertyValue,会不会出现问题
2020-05-21
关于图片资源
2020-05-08
PropertyValue这里覆写的tostring方法是用来干嘛的呢
提问太多,页面渲染太慢,为了加快渲染速度,本页最多只显示几条提问。还有 28 条以前的提问,请 点击查看
提问之前请登陆
提问已经提交成功,正在审核。 请于 我的提问 处查看提问记录,谢谢
|