摘要: null不能跟任何值进行比较 阅读全文
posted @ 2018-10-24 15:22 宇枫 阅读(105) 评论(0) 推荐(0) 编辑
摘要: spring: datasource: name: test url: jdbc:mysql://localhost:3306/epay?characterEncoding=UTF-8 username: root password: 123 # 使用druid数据源 type: com.a... 阅读全文
posted @ 2018-10-09 18:40 宇枫 阅读(257) 评论(0) 推荐(0) 编辑
摘要: 第一种: public static String getRequestInput(HttpServletRequest request) { StringBuilder sb = new StringBuilder(); boolean isFirst = true; @SuppressWarnings("unchecked")... 阅读全文
posted @ 2018-09-20 10:31 宇枫 阅读(1698) 评论(0) 推荐(0) 编辑
摘要: public class JudgeChinese { public static void main(String[] args) { String s = "中文1"; String regex = "[\u4E00-\u9FA5]+"; if (s.matches(regex)) { System.out.pr... 阅读全文
posted @ 2018-08-28 10:09 宇枫 阅读(937) 评论(0) 推荐(0) 编辑
摘要: import java.util.ArrayList; import java.util.List; class Student { private String name; private double age; public Student(String name, double age) { this.name = n... 阅读全文
posted @ 2018-08-27 18:06 宇枫 阅读(50654) 评论(0) 推荐(1) 编辑
摘要: 2018-08-16 12:20:02.926,medicalinscore,c0a8640c15343932026511028,0.1,biz_error,medicalinscore|RPC,protocol=TR&callerZone=&callerIdc=&callerUrl=192.168.100.12&paramTypes=com.alipayeco.medicalinscore.f... 阅读全文
posted @ 2018-08-16 14:21 宇枫 阅读(1603) 评论(0) 推荐(0) 编辑
摘要: select '全部' AS `organ_category`, COUNT(*) AS amount FROM `organ_new` WHERE `city_code` ='SZ0755' AND `organ_type` ='P' AND `state` ='1' union all select `organ_category` ,COUNT(1) AS `amount` ... 阅读全文
posted @ 2018-08-13 18:02 宇枫 阅读(3089) 评论(0) 推荐(0) 编辑
摘要: select * FROM organ_new where city_code = 'SZ0755' and organ_type = 'H' and state = '1' ORDER BY FIELD(organ_category,'三级','二级','一级') ,#自定义排序 CONVERT(organ_... 阅读全文
posted @ 2018-08-10 17:35 宇枫 阅读(720) 评论(0) 推荐(0) 编辑
摘要: 受到传统mvc模式的开发影响,多数人都会想到把springboot项目打成war包在服务器容器里运行,笔者试过很多种方法打成war包部署tomcat上运行。运行成功但是怎么也访问不了,一直报404的错误。 干脆我就不打成war包了,直接打jar包。不管你的项目是web还不是web项目,你都可以打成j 阅读全文
posted @ 2018-08-03 10:23 宇枫 阅读(1032) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2018-07-26 12:21 宇枫 阅读(2) 评论(0) 推荐(0) 编辑