
SpringBoot
小码农的
青春无悔
展开
-
SpringBoot添加定时任务
方法很简单首先写一个类 @Slf4j @Configuration //1.主要用于标记配置类,兼备Component的效果。 @EnableScheduling //2.开启定时任务 public class LiveTask { private final WxLiveService wxLiveService; public LiveTask(WxLiveService wxLiveService) { this.wxLiveService = wxL原创 2020-07-13 09:21:41 · 220 阅读 · 0 评论 -
Java接收前端传List集合的实体类参数插入多条数据
Controller @RequestMapping(value = "/addProduct") public JSONObject add(@RequestBody List<ProductSkuBranch> list){ Integer count =0; JSONObject json=new JSONObject(); for (ProductSkuBranch productSkuBranch : list) { //插.原创 2020-05-25 19:38:03 · 6025 阅读 · 0 评论 -
SpringBoot项目打jar包报错的问题
问题是:最近在一次SpringBoot项目打包时发现,打jar包时报错,报错的信息如下: [INFO] Scanning for projects... [INFO] [INFO] ------------------------------------------------------------------------ [INFO] Building wisdomeyeapi0114 ...原创 2020-02-12 18:56:41 · 1522 阅读 · 0 评论