Steven5007

导航

上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 14 下一页

2019年1月8日 #

BigDecimal加减乘除

摘要: import java.math.BigDecimal; public class Testmath { public static void main(String[] args) { String str1="2.30"; BigDecimal bd=new BigDecimal(str1); 阅读全文

posted @ 2019-01-08 14:50 Steven5007 阅读(178) 评论(0) 推荐(0) 编辑

Calendar获取当前年份、月份、日期

摘要: 结果: 阅读全文

posted @ 2019-01-08 14:33 Steven5007 阅读(13308) 评论(0) 推荐(0) 编辑

2018年12月27日 #

win10 安装 mysql-8.0.12

摘要: 安装mysql 8 1.下载 https://dev.mysql.com/downloads/mysql/ 2.设置环境变量 将你解压后的文件里边的bin目录加入到path中。例如:D:\develop\mysql\mysql-8.0.12-winx64\bin 3.初始化配置 在安装目录下新建一个 阅读全文

posted @ 2018-12-27 15:07 Steven5007 阅读(153) 评论(0) 推荐(0) 编辑

2018年12月21日 #

Oracle创建database link(dblink)和同义词(synonym)

摘要: 同一个数据库不同用户之间建立dblink和synonym 1.建立dblink 实现在A用户下通过dblink访问B用户下的数据库表,需要在A用户下创建访问B库的dblink连接 相关连接: https://zyqwst.iteye.com/blog/2285560 https://blog.csd 阅读全文

posted @ 2018-12-21 15:28 Steven5007 阅读(739) 评论(0) 推荐(0) 编辑

2018年11月30日 #

spring boot 集成 quartz 定时任务

摘要: spring boot: @EnableScheduling开启计划任务支持,@Scheduled计划任务声明 1.pom.xml 引入依赖 2.在启动类上添加注解 @EnableScheduling 3.测试类 4.结果 5.corn 表达式 链接 : https://www.cnblogs.co 阅读全文

posted @ 2018-11-30 17:50 Steven5007 阅读(195) 评论(0) 推荐(0) 编辑

2018年11月27日 #

tomcat 启动Spring boot 项目

摘要: SpringBoot 项目如何在tomcat容器中运行 1.相关连接: https://blog.csdn.net/u010598360/article/details/78789197/ 2.修改打成的war包名称 在pom.xml文件中添加: mvn clean install的时候会生成pro 阅读全文

posted @ 2018-11-27 18:49 Steven5007 阅读(226) 评论(0) 推荐(0) 编辑

2018年11月26日 #

UUID+随机数

摘要: 展示: 链接:Java随机生成定长纯数字或数字字母混合数 1. https://www.cnblogs.com/aGboke/p/5488327.html 2. https://blog.csdn.net/cndmss/article/details/51996876 阅读全文

posted @ 2018-11-26 17:21 Steven5007 阅读(205) 评论(0) 推荐(0) 编辑

2018年11月20日 #

js常用字符串处理方法

摘要: 2.JSON对象和JSON字符串相互转化 3.JS操作String对象的方法 JS常用操作相关链接 : js常用字符串处理方法 阅读全文

posted @ 2018-11-20 17:46 Steven5007 阅读(138) 评论(0) 推荐(0) 编辑

Win10安装mysql-8.0.11-winx64详细步骤

摘要: 安装 mysql-8.0.11-winx64 https://blog.csdn.net/qq_20788055/article/details/80372577 阅读全文

posted @ 2018-11-20 14:21 Steven5007 阅读(163) 评论(0) 推荐(0) 编辑

2018年11月12日 #

ORA-02049: 超时: 分布式事务处理等待锁

摘要: 解决: 阅读全文

posted @ 2018-11-12 21:29 Steven5007 阅读(1248) 评论(0) 推荐(0) 编辑

上一页 1 ··· 4 5 6 7 8 9 10 11 12 ··· 14 下一页