上一页 1 ··· 18 19 20 21 22

2019年8月23日

Java File download

摘要: 注意文件响应处理方式,是响应为网页形式还是附件显示,看如下信息: In a regular HTTP response, the Content-Disposition response header is a header indicating if the content is expected 阅读全文

posted @ 2019-08-23 10:13 滚动的蛋 阅读(426) 评论(0) 推荐(0) 编辑

2019年8月22日

Spring Security 解决X-Frame-Options deny

摘要: 错误信息: Refused to display 'https://github.com/hwclass/awesome-sound' in a frame because it set 'X-Frame-Options' to 'deny 解决方法 在配置中添加: 点击查看mozilla文档 阅读全文

posted @ 2019-08-22 14:13 滚动的蛋 阅读(3925) 评论(0) 推荐(0) 编辑

2019年8月20日

springboot 开启缓存

摘要: Caching Data with Spring This guide walks you through the process of enabling caching on a Spring managed bean. What you’ll build You’ll build an appl 阅读全文

posted @ 2019-08-20 16:00 滚动的蛋 阅读(1168) 评论(0) 推荐(0) 编辑

2019年8月15日

Mybaits 查询 choose when 的使用

摘要: 注意: 单字符判断相等时错误: <if test="takeWay == '1' and workday != null "> 改为<if test='takeWay == "1" and workday != null '> 或改为<if test="takeWay == '1'.toString 阅读全文

posted @ 2019-08-15 17:02 滚动的蛋 阅读(407) 评论(0) 推荐(0) 编辑

Mybaist 注解 foreach 嵌套循环实现批量插入

摘要: 第一种写法(#使用占位符推荐): 执行结果: insert into dmp_department_work ( `functional` , `num` , `power` , `state` , `department` , `table` ) values ( ? , ? , ? , ? , 阅读全文

posted @ 2019-08-15 15:21 滚动的蛋 阅读(2052) 评论(0) 推荐(0) 编辑

2019年7月31日

Tomcat部署多个Springboot项目报错 InstanceNotFoundException: com.alibaba.druid:type=DruidDataSourceStat

摘要: 在一个tomcat服务器下部署了多个采用阿里druid作为数据连接池,结果启动报错。原因是不能在一个tomcat服务器下不能直接部署多个druid作为数据连接池的项目,需要配置。 解决办法: 在springboot中添加配置项: spring.jmx.default-domain= appName 阅读全文

posted @ 2019-07-31 18:44 滚动的蛋 阅读(3390) 评论(0) 推荐(0) 编辑

2019年7月26日

MYSQL 快速备份大数据量

摘要: Part 1(mysqldump): mysqldump是官方自带的逻辑备份工具,可以进行实例级、库级、表级的数据与结构或单表结构备份,还能添加where筛选条件等。 例:mysqldump -uusername -ppassword --databases your DB--tables your 阅读全文

posted @ 2019-07-26 15:13 滚动的蛋 阅读(6225) 评论(0) 推荐(0) 编辑

2019年6月4日

防止过度工程-[拒绝完美主义]

摘要: http://www.yinwang.org/blog-cn/2015/11/21/programming-philosophy 阅读全文

posted @ 2019-06-04 10:39 滚动的蛋 阅读(253) 评论(0) 推荐(0) 编辑

2019年6月3日

ES6学习

摘要: 1、let块级变量 usage :使用于循环中,解除闭包麻烦 2、块级作用域-可以多层嵌套 note: 没有返回值 {{}} 3、do{} 表达式 note: 可以将块级作用域的代码作为返回值 var test = do { let t = f(); t = t * t + 1;}4、匿名函数--箭 阅读全文

posted @ 2019-06-03 17:02 滚动的蛋 阅读(161) 评论(0) 推荐(0) 编辑

2019年5月23日

Linux系统上java调用C++ so库文件

摘要: PART1: java中使用jna替代jni调用c++/c生成的 dll/so库文件需要做的事项 1、引入JNA依赖或者直接下载JNAjar包 <!-- https://mvnrepository.com/artifact/net.java.dev.jna/jna --> <dependency> 阅读全文

posted @ 2019-05-23 17:23 滚动的蛋 阅读(5021) 评论(0) 推荐(1) 编辑

上一页 1 ··· 18 19 20 21 22

导航