上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 114 下一页
摘要: 安装 下载 官网:http://maven.apache.org/download.cgi 解压 tar -zxvf apache-maven-3.6.3-bin.tar.gz -C /usr/local/ 修改环境变量 vim /etc/profile 配置文件生效:source /etc/pro 阅读全文
posted @ 2020-09-13 20:00 陈彦斌 阅读(414) 评论(0) 推荐(0) 编辑
摘要: 查看端口 netstat -tlun 查看端口被那个服务占用 netstat -tunlp |grep 8080 阅读全文
posted @ 2020-09-12 18:07 陈彦斌 阅读(187) 评论(0) 推荐(0) 编辑
摘要: sql和mysql执行顺序,发现内部机制是一样的。最大区别是在别名的引用上。 一、sql执行顺序 (1)from (3) join (2) on (4) where (5)group by(开始使用select中的别名,后面的语句中都可以使用)(6) avg,sum.... (7)having (8 阅读全文
posted @ 2020-08-29 21:26 陈彦斌 阅读(435) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2020-08-24 22:45 陈彦斌 阅读(4124) 评论(0) 推荐(0) 编辑
摘要: @Test public void txfloat() { // TODO 自动生成的方法存根 int a=9; int b=7; DecimalFormat df=new DecimalFormat("0.00"); System.out.println(df.format((float)a/b) 阅读全文
posted @ 2020-08-24 17:13 陈彦斌 阅读(4806) 评论(0) 推荐(0) 编辑
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 114 下一页