上一页 1 2 3 4 5 6 ··· 8 下一页
摘要: 删除 java代码中所有的注释.java 阅读全文
posted @ 2019-01-04 21:34 lovollll 阅读(2232) 评论(0) 推荐(0) 编辑
摘要: TaskManager BastTask 编码自己任务类 阅读全文
posted @ 2019-01-04 21:08 lovollll 阅读(893) 评论(0) 推荐(0) 编辑
摘要: ``` 1.if 通过if把会做的事情有条件的包含在where里面,例子: select * from tb_employee where state='active' and id=#{id} and sex=#{sex} 这句话意思是如果没有传入id这个参数,那么返回所有state='active'的结果,如果传入id以及sex参数,那么只返回特定id 的active状态的结果。 2.... 阅读全文
posted @ 2019-01-04 21:07 lovollll 阅读(159) 评论(0) 推荐(0) 编辑
摘要: GET,POST请求 阅读全文
posted @ 2019-01-04 21:05 lovollll 阅读(217) 评论(0) 推荐(0) 编辑
摘要: ``` package com.example.convert; import java.text.DecimalFormat; import java.util.Scanner; /** * 金额转换 * * @author Administrator */ public class ConvertMoney { // 大写数字 private final static ... 阅读全文
posted @ 2019-01-04 21:04 lovollll 阅读(3794) 评论(0) 推荐(0) 编辑
摘要: 将数据库对应的表生成对应的实体类,包含注释信息 阅读全文
posted @ 2019-01-04 21:03 lovollll 阅读(446) 评论(0) 推荐(0) 编辑
摘要: pinyin 4j demo 阅读全文
posted @ 2019-01-04 20:59 lovollll 阅读(127) 评论(0) 推荐(0) 编辑
摘要: ``` package com.bizvane.utils.tools; import java.lang.reflect.Field; import java.util.Arrays; import java.util.HashMap; import java.util.LinkedHashMap; import java.util.Map; import java.util.Set; i... 阅读全文
posted @ 2019-01-04 20:58 lovollll 阅读(531) 评论(0) 推荐(0) 编辑
摘要: MongoDB增删改查 createInfo类 logoUtil类 测试代码 阅读全文
posted @ 2019-01-04 20:57 lovollll 阅读(137) 评论(0) 推荐(0) 编辑
摘要: Hystrix配置文件配置 阅读全文
posted @ 2019-01-04 20:55 lovollll 阅读(699) 评论(0) 推荐(0) 编辑
摘要: code 阅读全文
posted @ 2019-01-03 14:20 lovollll 阅读(4238) 评论(0) 推荐(0) 编辑
摘要: pom.xml HttpUtil.java 阅读全文
posted @ 2019-01-03 14:19 lovollll 阅读(419) 评论(0) 推荐(0) 编辑
摘要: 使用spring AbstractRoutingDatasource实现多数据源 读写数据库类型 当前数据库配置上下文 自定义事务管理器 mybatis插件(拦截器) 阅读全文
posted @ 2019-01-03 14:19 lovollll 阅读(138) 评论(0) 推荐(0) 编辑
摘要: MsgCodeUtil.java 阅读全文
posted @ 2019-01-03 14:18 lovollll 阅读(603) 评论(0) 推荐(0) 编辑
摘要: pom.xml spring redis.xml spring redis sentine.xml RedisUtil.java config.properties 阅读全文
posted @ 2019-01-03 14:17 lovollll 阅读(162) 评论(0) 推荐(0) 编辑
摘要: Java图片高保真缩放 阅读全文
posted @ 2019-01-03 14:16 lovollll 阅读(567) 评论(0) 推荐(0) 编辑
摘要: 集合了一些常用的小片段 1. 字符串有整型的相互转换 Java代码 String a = String.valueOf(2); //integer to numeric string int i = Integer.parseInt(a); //numeric string to an int 2. 阅读全文
posted @ 2019-01-03 14:15 lovollll 阅读(226) 评论(0) 推荐(0) 编辑
摘要: SftpUtils 阅读全文
posted @ 2019-01-03 14:15 lovollll 阅读(124) 评论(0) 推荐(0) 编辑
摘要: web.xml配置 XssFilter.java XssHttpServletRequestWrapperNew.java 阅读全文
posted @ 2019-01-03 14:13 lovollll 阅读(250) 评论(0) 推荐(0) 编辑
摘要: gistfile1.txt 阅读全文
posted @ 2019-01-02 14:05 lovollll 阅读(794) 评论(0) 推荐(0) 编辑
摘要: 页面翻页,滑动功能示范代码 阅读全文
posted @ 2019-01-02 14:04 lovollll 阅读(545) 评论(0) 推荐(0) 编辑
摘要: js递归,二叉树的操作 阅读全文
posted @ 2019-01-02 14:03 lovollll 阅读(183) 评论(0) 推荐(0) 编辑
摘要: 需要JQuery 阅读全文
posted @ 2019-01-02 14:02 lovollll 阅读(918) 评论(0) 推荐(0) 编辑
摘要: SVG文件是由各个元素组成。元素由标签定义,而标签格式即html的元素定义格式。但是载入一个SVG文件,却无法通过常规的js获取对象方式来获取到SVG中定义的元素,更无法通过这种方式来动态添加SVG元素与事件。 SVG元素的操作都要借助于SVG的document对象。SVG的document对象获取 阅读全文
posted @ 2019-01-02 14:02 lovollll 阅读(4350) 评论(0) 推荐(0) 编辑
摘要: 指定html转换成pdf 阅读全文
posted @ 2019-01-02 14:01 lovollll 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 常用的ajax请求方法封装 阅读全文
posted @ 2019-01-02 14:00 lovollll 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 对象类型判断工具 阅读全文
posted @ 2019-01-02 12:33 lovollll 阅读(197) 评论(0) 推荐(0) 编辑
摘要: canvas旋转图片 阅读全文
posted @ 2019-01-02 12:32 lovollll 阅读(877) 评论(1) 推荐(1) 编辑
摘要: ``` // 序列化JSON字符串 $.fn.serializeObject = function () { let o = {}; let a = this.serializeArray(); $.each(a, function () { let value = this.value; let chain = this.name.spl... 阅读全文
posted @ 2019-01-02 12:31 lovollll 阅读(120) 评论(0) 推荐(0) 编辑
摘要: ``` html 表格导出Excel 表格导出Excel json导出Excel html 表格导出道Excel 列标题1列标题2类标题3列标题4列标题5 aaabbbcccdddeee AAABBBCCCDDDEEE ... 阅读全文
posted @ 2019-01-01 21:58 lovollll 阅读(219) 评论(0) 推荐(0) 编辑
摘要: getVarify.js 阅读全文
posted @ 2019-01-01 21:57 lovollll 阅读(134) 评论(0) 推荐(0) 编辑
摘要: javascript操作cookie的demo 阅读全文
posted @ 2019-01-01 21:56 lovollll 阅读(125) 评论(0) 推荐(0) 编辑
摘要: ``` ``` 阅读全文
posted @ 2019-01-01 21:55 lovollll 阅读(514) 评论(0) 推荐(0) 编辑
摘要: xlsxwriter.class.php 阅读全文
posted @ 2018-12-31 19:20 lovollll 阅读(761) 评论(0) 推荐(0) 编辑
摘要: image_all_rgb.php 匹配图像中的验证码 阅读全文
posted @ 2018-12-31 19:19 lovollll 阅读(202) 评论(0) 推荐(0) 编辑
摘要: class_ftp.php 阅读全文
posted @ 2018-12-31 19:18 lovollll 阅读(140) 评论(0) 推荐(0) 编辑
摘要: numToRmb.php 阅读全文
posted @ 2018-12-31 19:17 lovollll 阅读(1005) 评论(0) 推荐(0) 编辑
摘要: lottery.php 阅读全文
posted @ 2018-12-31 19:16 lovollll 阅读(351) 评论(0) 推荐(0) 编辑
摘要: 请自行到百度地图官网申请您的ak 阅读全文
posted @ 2018-12-31 19:15 lovollll 阅读(190) 评论(0) 推荐(0) 编辑
摘要: php后端对跳转的封装 阅读全文
posted @ 2018-12-31 18:26 lovollll 阅读(134) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 8 下一页