摘要: icepdf转pdf文档为图片 首先导入icepdf jar包或maven pdfPath为pdf文件路径、pdfimgpsth为图片保存的路径 public static void icePdfImg(String pdfPath,String pdfimgpsth,HttpServletRequ 阅读全文
posted @ 2020-01-02 17:50 _Lawrence 阅读(875) 评论(0) 推荐(0) 编辑
摘要: 多文件保存到本地: @ResponseBody @RequestMapping(value = "/uploadApp",produces = { "application/json;charset=UTF-8" },method= RequestMethod.POST) public String 阅读全文
posted @ 2020-01-02 17:44 _Lawrence 阅读(3601) 评论(0) 推荐(1) 编辑
摘要: 方法一: @Configuration public class CrossConfig implements WebMvcConfigurer { @Override public void addCorsMappings(CorsRegistry registry) { registry.add 阅读全文
posted @ 2019-12-16 14:37 _Lawrence 阅读(265) 评论(0) 推荐(0) 编辑
摘要: 创建存储过程简单示例: DELIMITER //CREATE PROCEDURE ccgc()BEGINSELECT * FROM TEXT;SELECT * FROM s_user;END//DELIMITER ; //调用CALL ccgc() 创建带参数的存储过程: DELIMITER //C 阅读全文
posted @ 2019-11-25 15:38 _Lawrence 阅读(1247) 评论(0) 推荐(0) 编辑
摘要: application.yml datasource: type: com.alibaba.druid.pool.DruidDataSource url: jdbc:mysql://localhost:3306/risk?useUnicode=true&characterEncoding=utf8& 阅读全文
posted @ 2019-11-22 15:37 _Lawrence 阅读(975) 评论(0) 推荐(0) 编辑
摘要: 在logback.xml里加入如下配置即可: <include resource="org/springframework/boot/logging/logback/base.xml"/><logger name="org.springframework.jdbc.core" additivity= 阅读全文
posted @ 2019-11-21 15:24 _Lawrence 阅读(3301) 评论(0) 推荐(0) 编辑
摘要: public static String getIp(){ try { InetAddress ia=InetAddress.getLocalHost(); // String localname=ia.getHostName(); String localip=ia.getHostAddress( 阅读全文
posted @ 2019-10-31 10:28 _Lawrence 阅读(6003) 评论(0) 推荐(0) 编辑
摘要: //ScheduledThreadPoolExecutor每三秒执行一次 public static void main(String[] args) { ScheduledThreadPoolExecutor scheduled = new ScheduledThreadPoolExecutor( 阅读全文
posted @ 2019-10-25 15:30 _Lawrence 阅读(1184) 评论(0) 推荐(0) 编辑
摘要: 1、解决列文字隔开问题,及文字太长问题解决。 yAxis: [ { type : 'category', data : message.data[0].dataone, axisLabel: { interval:0, formatter: function(value) { if (value.l 阅读全文
posted @ 2019-08-16 16:04 _Lawrence 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 引入pom <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-data-redis</artifactId> </dependency> 配置文件 redis: datab 阅读全文
posted @ 2019-08-09 11:06 _Lawrence 阅读(230) 评论(0) 推荐(0) 编辑