会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
宇翊
博客园
首页
新随笔
联系
管理
上一页
1
···
12
13
14
15
16
17
18
下一页
2018年7月18日
mysql使用sql语句根据经纬度计算距离排序
摘要: CREATE TABLE `locationpoint` ( `id` int(11) NOT NULL, `province` varchar(20) NOT NULL, `city` varchar(20) NOT NULL, `longitude` double(10,3) NOT NULL, `latitude` double(10,3) NOT NULL, PR...
阅读全文
posted @ 2018-07-18 17:56 宇枫
阅读(5094)
评论(0)
推荐(0)
编辑
2018年7月12日
下拉框二级联动
摘要: 去这里看看有很多有用的:http://www.jq22.com/webqd2013
阅读全文
posted @ 2018-07-12 12:28 宇枫
阅读(121)
评论(0)
推荐(0)
编辑
2018年7月3日
linux指令统计日志出现的次数
摘要: cat XXX.log|grep ''|grep '条件'| wc -l 单个条件统计 cat XXX.log|grep ''|grep '条件1'|grep '条件2'|grep '条件3'| wc -l 如果需要统计多个条件
阅读全文
posted @ 2018-07-03 16:44 宇枫
阅读(6981)
评论(1)
推荐(2)
编辑
2018年6月26日
springboot使用redis的配置application.yml连接池以及存取
摘要: 第一步:添加pom文件依赖: 第二步:配置application文件 第三步:读取配置: 第四步:调用工具类demo 第五步:存取demo:
阅读全文
posted @ 2018-06-26 20:37 宇枫
阅读(41451)
评论(0)
推荐(0)
编辑
2018年6月21日
BigDecimal 类型数据比较大小
摘要: public static void main( String[] args ) { BigDecimal a=new BigDecimal(-1); if(a.compareTo(BigDecimal.ZERO)==-1){ System.out.println("小于0"); } ...
阅读全文
posted @ 2018-06-21 18:45 宇枫
阅读(1156)
评论(0)
推荐(0)
编辑
2018年6月20日
list排序,顺序,倒序
摘要: Collections.sort(list); // 顺序排列 Collections.reverse(list); // 倒序排列 Collections.shuffle(list); // 无序
阅读全文
posted @ 2018-06-20 10:51 宇枫
阅读(19903)
评论(0)
推荐(0)
编辑
2018年6月19日
springboot添加log4j日志配置log4j.xml生成日志文件
摘要: 第一步:添加pom文件依赖 第二步:在resources目录下新建一个log4j.xml文件 log4j.xml: 注: org.apache.log4j.ConsoleAppender(控制台), org.apache.log4j.FileAppender(文件), org.apache.log4
阅读全文
posted @ 2018-06-19 21:30 宇枫
阅读(17431)
评论(0)
推荐(0)
编辑
2018年5月25日
mybatis使用@param("xxx")注解传参和不使用的区别
摘要: 跟映射的xml 区别是:使用注解可以不用加parameterType
阅读全文
posted @ 2018-05-25 17:34 宇枫
阅读(9494)
评论(0)
推荐(0)
编辑
2018年5月22日
jetty 插件启动指定端口号
摘要: clean jetty:run -Djetty.port=端口号
阅读全文
posted @ 2018-05-22 09:27 宇枫
阅读(759)
评论(0)
推荐(0)
编辑
2018年5月19日
javaweb项目静态资源被拦截的解决方法
摘要: <servlet-mapping> <servlet-name>springMvc</servlet-name> <url-pattern>/*</url-pattern> </servlet-mapping> 不管是/还是/*都会拦截静态资源,无法访问静态资源 放行只需在spring-servle
阅读全文
posted @ 2018-05-19 17:01 宇枫
阅读(4822)
评论(0)
推荐(0)
编辑
上一页
1
···
12
13
14
15
16
17
18
下一页