03 2018 档案
摘要:UPDATE FP_USER_BASE SET PASSWORD = WHEN #{item.id,jdbcType=BIGINT} THEN #{item.password,jdbcType=VARCHAR}
阅读全文
摘要:转自:https://blog.csdn.net/abbuggy/article/details/7016185
阅读全文
摘要:package com.lxc.wmb; import java.io.UnsupportedEncodingException; import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; import sun.misc.BASE64Encoder; @SuppressWa...
阅读全文
摘要:import java.util.regex.Pattern; public class Test_REG { public static void main(String[] args) { //只允许输入6位数字 String pattern = "[0-9]{6}"; boolean isMatch = Pattern.matc...
阅读全文
摘要:转自:https://blog.csdn.net/fytzzh/article/details/650205
阅读全文
摘要:关于常用的Maven命令 mvn archetype:create :创建 Maven 项目 mvn compile :编译源代码 mvn test-compile :编译测试代码 mvn test : 运行应用程序中的单元测试 mvn site : 生成项目相关信息的网站 mvn clean :清
阅读全文
摘要:转自:https://blog.csdn.net/l1028386804/article/details/46583279
阅读全文
摘要:package com.lxc.wmb; public enum TestEnum { Success("200","成功!"), Faild("500","错误!"); private String code; private String msg; private TestEnum(String code, String ms...
阅读全文
摘要:public class ReadProperties{ private static String proFileName = "/config/MQSubjectId.properties"; private static Properties pro; static{ try { ...
阅读全文
摘要:1.右击pom.xml文件,选择Run As ——> Maven build… 2.在打开的页面中,如图输入“dependency:copy-dependencies”,后点击“Run”即可 3.在当前项目的目录的“targed/dependency”下即可看见
阅读全文
摘要:转自:http://blog.csdn.net/sxzlc/article/details/74127268
阅读全文
摘要:https://pan.baidu.com/s/1c0cjDEK
阅读全文
摘要:http://www.jb51.net/article/71885.htm
阅读全文
摘要:Collections.synchronizedMap()和Hashtable一样,实现上在调用map所有方法时,都对整个map进行同步,而ConcurrentHashMap的实现却更加精细,它对HashMap中的所有桶加了锁。
阅读全文
摘要:下载Thrift:http://thrift.apache.org/download ■ 将thrift-0.11.0.exe重命名为thrift.exe; ■ 解压thrift-0.11.0.tar.gz,得到thrift-0.11.0目录,将thrift.exe copy到thrift-0.11
阅读全文
摘要:1.准备一个已编写的合约: ——该合约是用solidity语言编写 想要部署合约需要得到合约代码的ABI和EVM code。 一个编译合约的在线编译网站: http://chriseth.github.io/browser-solidity/#version=soljson-latest.js 图中
阅读全文