摘要:
JS: $("#department").hide(); JSP: <th id="department" width="5%">部门</th> JS: loadDepartment: function(department){ return " style=\"display:none;\" "; 阅读全文
摘要:
https://github.com/vhf/free-programming-books/blob/master/free-programming-books-zh.md 阅读全文
摘要:
tomcat设置java虚拟机参数 : VM arguments -Xmx512m -XX:MaxPermSize=100m 阅读全文
摘要:
<?xml version="1.0" encoding="UTF-8"?> <projectDescription> <name>taoke</name> <comment></comment> <projects> </projects> <buildSpec> <buildCommand> < 阅读全文
摘要:
JAVA 通常有两种方法来操作Excel,分别是开源的POI和JExcelAPI。POI是Apace公司,对中文支持较弱;JExcelAPI是韩国公司,中文支持好,纯JAVA编写,可跨平台。不依赖Windows系统,在Linux下同样能够正确的处理Excel文件。 对图形和图表的支持很有限,仅识别P 阅读全文
摘要:
@JSON(format="yyyy-MM-dd") public Date getCreatDate() { return creatdate; } @JSON(format="yyyy-MM-dd hh-mm-ss") public Date getCreatDate() { return cr 阅读全文
摘要:
SQL在线练习 https://h.w.com/lin/h select SUBSTRING_INDEX("https://h.w.com/lin/h", '/', 3) 效果: https://h.w.com huangwanlin SELECT left("huangwanlin" ,5) 效果 阅读全文
摘要:
查询排行及所有(表名.*) 1. set @rownum=0; SELECT @rownum:=@rownum+1 AS top, customer.* FROM customer 2. SELECT @rownum:=@rownum+1 AS top, customer.* FROM (SELEC 阅读全文
摘要:
body内容: { "name":"mark", "orgIds": ["111","222"], } RestTemplate调用POST接口示例: String url = "127.0.0.1:8080/resources?id=1"; JSONObject json = new JSONOb 阅读全文
摘要:
给现有的wxinfo表的sourceUrl 字段创建全文索引 ALTER TABLE wxinfo ADD FULLTEXT INDEX sourceUrl (sourceUrl) 创建全文索引前: SELECT * FROM wxinfo WHERE sourceUrl LIKE '%查询字符串% 阅读全文