上一页 1 ··· 6 7 8 9 10 11 12 13 14 15 下一页

2017年1月6日

mybatis的配置

摘要: <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance 阅读全文

posted @ 2017-01-06 17:43 老邱2 阅读(105) 评论(1) 推荐(0) 编辑

spring+redis

摘要: 配置 1 <?xml version="1.0" encoding="UTF-8"?> 2 <beans xmlns="http://www.springframework.org/schema/beans" 3 xmlns:xsi="http://www.w3.org/2001/XMLSchema 阅读全文

posted @ 2017-01-06 13:16 老邱2 阅读(184) 评论(0) 推荐(0) 编辑

2017年1月5日

spring+task配置

摘要: 1.spring+task文件配置 1 <?xml version="1.0" encoding="UTF-8"?> 2 <beans xmlns="http://www.springframework.org/schema/beans" 3 xmlns:xsi="http://www.w3.org 阅读全文

posted @ 2017-01-05 21:01 老邱2 阅读(343) 评论(0) 推荐(0) 编辑

spring+缓存

摘要: 1.配置ehcache.xml 1 <?xml version="1.0" encoding="UTF-8"?> 2 <ehcache updateCheck="false" dynamicConfig="false"> 3 <diskStore path="java.io.tmpdir"/> 4 阅读全文

posted @ 2017-01-05 19:57 老邱2 阅读(173) 评论(0) 推荐(0) 编辑

spring-task

摘要: cronExpression的配置说明,具体使用以及参数请百度google 字段 允许值 允许的特殊字符 秒 0-59 , - * / 分 0-59 , - * / 小时 0-23 , - * / 日期 1-31 , - * ? / L W C 月份 1-12 或者 JAN-DEC , - * / 阅读全文

posted @ 2017-01-05 18:13 老邱2 阅读(112) 评论(0) 推荐(0) 编辑

2017年1月4日

数据库基本概念和英文翻译

摘要: 数据:Data(数据库基本对象) 数据库(databases) 可共享的数据的集合 数据库管理系统(Database Management System,DBMS)一种操纵和管理数据库的大型软件 数据定义语言(Data Definition Language,DDL):是用于描述数据库中要存储的现实 阅读全文

posted @ 2017-01-04 16:04 老邱2 阅读(1326) 评论(0) 推荐(0) 编辑

java面向对象设计原则

摘要: 原则1:DRY(Don't repeat yourself) 即不要写重复的代码,而是用“abstraction”类来抽象公有的东西。如果你需要多次用到一个硬编码值,那么可以设为公共常量;如果你要在两个以上的地方使用一个代码块,那么可以将它设为一个独立的方法。SOLID设计原则的优点是易于维护,但要 阅读全文

posted @ 2017-01-04 13:25 老邱2 阅读(134) 评论(0) 推荐(0) 编辑

replace和replaceAll

摘要: replace():不可以正则 replaceAll()参数十一正则 replaceFirst()参数是一个正则,匹配第一次出现的 package entity; public class Test2 { public static void main(String[] args) { String 阅读全文

posted @ 2017-01-04 13:19 老邱2 阅读(114) 评论(0) 推荐(0) 编辑

String.getBytes()

摘要: package entity; import java.io.UnsupportedEncodingException; public class Test { public static void main(String[] args) throws UnsupportedEncodingExce 阅读全文

posted @ 2017-01-04 13:06 老邱2 阅读(180) 评论(0) 推荐(0) 编辑

【WEB】HTTP协议

摘要: http1.0和http1.1 区别,http1.1可以发送多个http请求 阅读全文

posted @ 2017-01-04 11:56 老邱2 阅读(92) 评论(0) 推荐(0) 编辑

上一页 1 ··· 6 7 8 9 10 11 12 13 14 15 下一页

导航