摘要:
低效的“WHERE 1=1” 网上有不少人提出过类似的问题:“看到有人写了WHERE 1=1这样的SQL,到底是什么意 思?”。 其实使用这种用法的开发人员一般都是在使用动态组装的SQL。 让我们想像如下的场景:用户要求提供一个灵活的查询界面来根据各种复杂的条件来查询 员工信息,界面如下图: 界面中 阅读全文
摘要:
ssh 连接服务器 ssh user@www.xxx.com -p60022 用户名@ip 端口 进入日志所在目录 cat FILENAME 查看文本文件,P.S. 在查较大文件时为了避免刷屏,请使用 cat FILENAME | more 或 more FILENAME zcat FILENAME 阅读全文
摘要:
垃圾回收是Java中自动内存管理的另一种叫法。垃圾回收的目的是为程序保持尽可能多的可用堆(heap)。 JVM会删除堆上不再需要从堆引用的对象。 比方说,下面这个方法就会从函数调用。 通过函数第一行代码中参考变量calendar,在堆上创建了GregorianCalendar类的一个对象。 函数结束 阅读全文
摘要:
断言是在Java 1.4中引入的。它能让你验证假设。如果断言失败(即返回false),就会抛出AssertionError(如果启用断言)。基本断言如下所示。 基本语法: 开启断言:虚拟机参数 -ea 阅读全文
摘要:
//int(type) followed ... (three dot's) is syntax of a variable argument. public static int sum(int... numbers) { //inside the method a variable argument is similar to an array. ... 阅读全文
摘要:
官网: spring boot springcloud 学习资源 使用IDEA创建SpringBoot项目 Spring Boot教程 https://blog.csdn.net/forezp/article/details/70341818 Spring Cloud教程 http://blog.c 阅读全文
摘要:
spring boot启动: 1:默认启动方法 2:指定配置文件启动 3:启动是添加配置 阅读全文