-- alter TABLE tblInstrumentShortTarget modify createTime timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP-- alter table tblInstrumentShortTarget MODIFY u ...
分类:
其他好文 时间:
2020-01-16 20:30:32
阅读次数:
121
先来看下面一段html: 这个ng-model名称带有一定的规律带有序号。 先来实现数据绑定,从数据取到数据后,为ng-model绑定相对应的值: var c = response.data $scope.Start1 = $filter("jsonDateFormat")(c.Start1, "y ...
分类:
Web程序 时间:
2020-01-16 19:24:34
阅读次数:
125
csv工具类: package cn.com.rivercloud.util; import com.csvreader.CsvWriter; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import java.lang.refl ...
分类:
编程语言 时间:
2020-01-16 11:04:23
阅读次数:
194
本人免费整理了Java高级资料,涵盖了Java、Redis、MongoDB、MySQL、Zookeeper、Spring Cloud、Dubbo高并发分布式等教程,一共30G,需要自己领取。传送门:https://mp.weixin.qq.com/s/osB-BOl6W-ZLTSttTkqMPQ 「 ...
分类:
其他好文 时间:
2020-01-14 16:25:23
阅读次数:
77
RabbitMQ是什么 ? RabbitMQ是一个在AMQP基础上完整的,可复用的企业消息系统。他遵循Mozilla Public License开源协议。1.安装RabbitMQ需要先安装Erlang语言开发包。(注意Erlang的版本必须和rabiitmq对应 否则启动不了) 下载地址 http ...
说明 适用场景:应用系统根据角色实现菜单权限管控 技术点:mysql.help_topic;substring_index() ? 表结构 user 用户表 role 角色表 menu菜单表 SQL实现 SELECT u.u_name, r.r_name, m.m_title FROM user u ...
分类:
数据库 时间:
2020-01-14 12:49:27
阅读次数:
569
The table does not comply with the requirements by an external plugin.
分类:
其他好文 时间:
2020-01-14 09:24:20
阅读次数:
116
第一种:使用Executors.newScheduledThreadPool实现定时任务 这种实现方式是阿里规范不推荐的使用方式,有资源耗尽的风险 第二种:使用ScheduledThreadPoolExecutor实现定时任务 推荐的方式 第三种:SpringBoot中定时任务的创建方式 方式一:使 ...
分类:
其他好文 时间:
2020-01-13 14:30:31
阅读次数:
75
String origin = filterContext.HttpContext.Request.Headers["Origin"]; filterContext.HttpContext.Response.AppendHeader("Access-Control-Allow-Origin", "* ...
分类:
Web程序 时间:
2020-01-13 13:16:47
阅读次数:
106