自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(7)
  • 收藏
  • 关注

原创 实现京东商品详情页面的商品切换功能

这里写自定义目录标题实现京东商品详情页面的商品切换功能功能介绍:根据选择商品参数不同,选择后跳转到对应的商品详情页面数据库表查询语句查询结果前台页面实现选择参数、切换商品实现京东商品详情页面的商品切换功能功能介绍:根据选择商品参数不同,选择后跳转到对应的商品详情页面数据库表Sku商品属性与销售属性对应关系表(sku_sale_attr_value):查询语句SELECT GROUP_CONCAT(sale_attr_value_id ORDER BY sale_attr_value_id S

2021-03-03 19:49:50 1855 1

原创 微信支付实现

以下内容参考:https://pay.weixin.qq.com/wiki/doc/api/native.php?chapter=9_1获取微信支付二维码public Map<String, Object> createPayQrCode(String orderNo) throws Exception { // 获取订单信息 QueryWrapper<EduOrder> wrapper = new QueryWrapper<>();

2021-01-12 08:46:56 1655

原创 微信登录工具类

微信API操作Controller类import com.mytest.edu.entity.MemberCenter;import com.mytest.edu.service.MemberCenterService;import com.mytest.edu.utils.HttpClientUtils;import com.mytest.edu.utils.JwtUtils;import com.mytest.gson.Gson;import org.springframework.bean

2021-01-07 15:50:16 494

原创 阿里云OSS文件管理工具类

import com.aliyun.oss.OSS;import com.aliyun.oss.OSSClientBuilder;import com.aliyun.oss.model.DeleteObjectsRequest;import com.aliyun.oss.model.DeleteObjectsResult;import org.springframework.beans.factory.annotation.Value;import org.springframework.ster

2021-01-07 15:38:20 612

原创 随机生成验证码工具类

public class ValidateCodeUtils { /** * 随机生成验证码 * @param length 长度为4位或者6位 * @return */ public static String generateValidateCode(int length){ Integer code =null; if(length == 4){ code = new Random().ne

2021-01-07 15:33:06 89

原创 日期操作工具类

public class DateUtils { /** * 日期转换- String -> Date * * @param dateString 字符串时间 * @return Date类型信息 * @throws Exception 抛出异常 */ public static Date parseString2Date(String dateString) throws Exception { if (d

2021-01-07 15:31:56 111

原创 POI读取、校验Excel工具类

POI读取、校验Excel工具类import java.io.FileNotFoundException;import java.io.IOException;import java.io.InputStream;import java.text.SimpleDateFormat;import java.util.ArrayList;import java.util.List;import org.apache.poi.hssf.usermodel.HSSFWorkbook;import o

2021-01-07 15:29:00 329

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除