prader6

上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页

2020年2月5日

java.sql.SQLNonTransientConnectionException: Could not create connection to database server. Attempted reconnect 3 times. Giving up.

摘要: java.sql.SQLNonTransientConnectionException: Could not create connection to database server. Attempted reconnect 3 times. Giving up. at com.mysql.cj.j 阅读全文

posted @ 2020-02-05 11:15 prader6 阅读(17269) 评论(1) 推荐(0) 编辑

2019年12月31日

求某个时间,距离该天凌晨的毫秒数

摘要: /** * 求某个时间距离这天凌晨的毫秒数 * @param date * @return * @throws ParseException */ public static long getMillonTimes(String date) throws ParseException { long 阅读全文

posted @ 2019-12-31 06:02 prader6 阅读(166) 评论(0) 推荐(0) 编辑

2019年12月24日

查询名字有重复的企业

摘要: SELECT * FROM inventory i GROUP BY i.unit_detailed_name HAVING count(i.unit_detailed_name)>1 参考文章:https://blog.csdn.net/xusheng__zhang/article/details 阅读全文

posted @ 2019-12-24 10:10 prader6 阅读(230) 评论(0) 推荐(0) 编辑

2019年12月22日

arts lettcode 题目

摘要: 编写一个函数来查找字符串数组中的最长公共前缀。 如果不存在公共前缀,返回空字符串 ""。 示例 1: 输入: ["flower","flow","flight"]输出: "fl"示例 2: 输入: ["dog","racecar","car"]输出: ""解释: 输入不存在公共前缀。说明: 所有输入 阅读全文

posted @ 2019-12-22 22:47 prader6 阅读(101) 评论(0) 推荐(0) 编辑

go 指南学习笔记

摘要: 1 If for 后面没有小括号。后面的花括号,要在当前行,并且中间有内容,右花括号要单独一行。 因为go会格式化代码,自动插入分号。 2 函数和方法的区别: 方法需要有一个接受者(selector)实列的函数。这个实例必须在和方法同样的包中生命。 func Add(a ,b int){ //函数 阅读全文

posted @ 2019-12-22 20:30 prader6 阅读(110) 评论(0) 推荐(0) 编辑

2019年12月21日

go 练习:HTTP 处理

摘要: 这篇文章只是联系go指南时的笔记吧。 package main import ( "fmt" "log" "net/http" ) type String string type Struct struct{ Greeting string Punct string Who string } fun 阅读全文

posted @ 2019-12-21 12:16 prader6 阅读(319) 评论(0) 推荐(0) 编辑

2019年12月20日

mybatis or的用法

摘要: @Test public void test3(){ CaseSmallListExample caseSmallListExample = new CaseSmallListExample(); caseSmallListExample.or().andDeptNumberEqualTo(1); 阅读全文

posted @ 2019-12-20 11:33 prader6 阅读(3831) 评论(0) 推荐(0) 编辑

2019年12月18日

java中&& 的运算优先级高于||

摘要: public class First { public static void main(String[] args) { boolean a = false; boolean b = true; boolean c = false; if (a || b && c){ System.out.pri 阅读全文

posted @ 2019-12-18 11:26 prader6 阅读(411) 评论(0) 推荐(0) 编辑

2019年12月17日

下载根目录下的pdf文件, 浏览器下载

摘要: public void outPut(HttpServletRequest request, HttpServletResponse response, Integer type) { ClassPathResource classPathResource = new ClassPathResour 阅读全文

posted @ 2019-12-17 14:34 prader6 阅读(279) 评论(0) 推荐(0) 编辑

2019年12月14日

updateprimarykey 和updateprimaryKeySelective

摘要: updateprimarykey 会对左右的字段都进行更新,updateprimaryKeySelective 只会对不为null的字段进行更新。。所以在填表的web项目需要注意这个两个方法的选择,因为有的选项会传null,如果允许传null,那么第二个方方法就没有更新效果。 int updateB 阅读全文

posted @ 2019-12-14 14:44 prader6 阅读(1691) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 9 ··· 11 下一页

导航