上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 48 下一页
  2020年4月3日
摘要: (1)工具类 SpringUtil.java package com.googosoft.until; import org.springframework.beans.BeansException; import org.springframework.context.ApplicationCon 阅读全文
posted @ 2020-04-03 08:25 song.yan 阅读(1753) 评论(0) 推荐(0) 编辑
摘要: (1)代码 option = { xAxis: { data: ['a', 'b', 'c', 'd'], axisTick: {show: false}, axisLabel: { formatter: 'barGap: \'-100%\'' } }, yAxis: { splitLine: {s 阅读全文
posted @ 2020-04-03 08:17 song.yan 阅读(412) 评论(0) 推荐(0) 编辑
  2020年4月1日
摘要: github地址:https://github.com/VioletSY/cron-js cron表达式可以使用js生成,也可以使用后台代码生成,这里采用js的方式 (1)Cron.js var __$ = { create: function () { return function () { t 阅读全文
posted @ 2020-04-01 21:46 song.yan 阅读(7406) 评论(0) 推荐(1) 编辑
  2020年3月31日
摘要: 使用Scheduler开启,移除,修改任务的工具类: package com.googosoft.until; import java.util.ArrayList; import java.util.Date; import java.util.List; import org.quartz.Cr 阅读全文
posted @ 2020-03-31 15:13 song.yan 阅读(1224) 评论(0) 推荐(0) 编辑
摘要: 1,单选按钮回显 (1)设置v-model,label (2)给model绑定的变量赋值 注:变量的值不可以是整数 2,多选按钮回显 (1)设置v-model,label (2)给model绑定的变量赋值 注:变量的值不可以是整数 3,子模块表单赋值 (1)问题:在列表页面(父模块)打开添加页面(子 阅读全文
posted @ 2020-03-31 08:52 song.yan 阅读(641) 评论(0) 推荐(0) 编辑
  2020年3月27日
摘要: (1)关于获取类的字段有两种方式:getFields()和getDeclaredFields()。 getFields():获得某个类的所有的公共(public)的字段,包括父类中的字段。 /** * 获取指定类及其子类的public的字段信息 * @param tempClass */ publi 阅读全文
posted @ 2020-03-27 08:56 song.yan 阅读(1258) 评论(0) 推荐(0) 编辑
  2020年3月26日
摘要: 当有排序时oracle分页查询 select * from (select rownum r, t.* from (select * from DATA_SCHEME_SCHEDUL order by update_time desc) t where rownum <= 5) where r > 阅读全文
posted @ 2020-03-26 21:40 song.yan 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 积累几个Cron表达式用法 package com.googosoft.until; import java.text.ParseException; import java.text.SimpleDateFormat; import java.util.ArrayList; import java 阅读全文
posted @ 2020-03-26 14:56 song.yan 阅读(324) 评论(0) 推荐(0) 编辑
  2020年3月20日
摘要: 一,架构图及其说明 1,UI数据:页面 2,一级缓存:内存 3,二级缓存:硬盘文件系统 4,定时任务:同步数据库与缓存中的数据 5,数据源:数据库 二,场景分析 加缓存之前的数据信息流: 浏览器发出数据请求后,服务器后端接收到数据请求,开始通过数据源连接读取各种数据后,通过业务逻辑层处理成需要的逻辑 阅读全文
posted @ 2020-03-20 10:00 song.yan 阅读(435) 评论(0) 推荐(0) 编辑
  2020年3月19日
摘要: (1)创建一个MavenProject (2)修改pom文件,添加以下内容 <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <versio 阅读全文
posted @ 2020-03-19 09:52 song.yan 阅读(898) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 48 下一页