mysql数据库中的关于查询日期的一些操作如下: --今天 select * from 表名 where to_days(时间字段名) = to_days(now()); --昨天 SELECT * FROM 表名 WHERE TO_DAYS( NOW( ) ) - TO_DAYS( 时间字段名) <= 1 --本周 SELECT * FRO…
<select name="ChanneltypeID" class="layui-select"> <option th:each="dict : ${type}" th:value="${dict.ChannelTypeID}" th:text="${dict.ChannelTypeName }"> </selec…
屏蔽证书验证 以下先不执行 用户根目录下找到.gitconfig [https] sslVerify = false proxy = http://3zi.cn/test.git proxy后边跟的是需要屏蔽的网站 关掉安全验证 先执行下面的看有没有问 没问题就不做上面的操作了 如果连接git是报错unable to acces…
使用byte数组时给定指定的长度 但是该属性的数据长度不是固定的 可能小于等于该长度 当数据长度小于数组给定的长度时 例如: //指定长度100 private byte[] bytes = new byte[100]; //此处省略获取数据 byte[]中的数据实际长度为30…
Java中的 split 函数是用于按指定字符(串)或正则去分割某个字符串,结果以字符串数组形式返回; 例如: String str="1234@abc"; String[] a = str.split("@"); System.out.println("处理结果: "+a[0]+","+a[1]); //输出的…
新建类ImgesUploadConfig 继承WebMvcConfigurer 代码如下,复制粘贴稍作改动即可: import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.…
webuploader工具官网:http://fex.baidu.com/webuploader/ webuploader自行官网下载 博主项目GitHub地址:https://github.com/AnRan-727/webuploader 上传文件按钮Html <div id="uploader" class="wu-example"&g…
webuploader工具官网:http://fex.baidu.com/webuploader/ webuploader自行官网下载 博主项目GitHub地址:https://github.com/AnRan-727/webuploader 上传文件按钮Html <div id="uploader" class="wu-example"&g…
spring官方推荐使用winsw来将springboot项目作为服务运行,参考https://docs.spring.io/spring-boot/docs/1.5.9.RELEASE/reference/htmlsingle/#deployment-windows 下载最新发布版winsw: 官方下载地址:https://github.com/…
mybatis中需要加两个参数: <insert id="addChannel" parameterType="cn.tcmp.entity.Channel_list" useGeneratedKeys="true" keyProperty="ChannelID"> INSERT INTO `channel_list`(Channelt…