上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 20 下一页
摘要: tobato fastdfs https://github.com/tobato/FastDFS_Client <dependency> <groupId>com.github.tobato</groupId> <artifactId>fastdfs-client</artifactId> <ver 阅读全文
posted @ 2022-04-07 13:49 xiexie0812 阅读(157) 评论(0) 推荐(0)
摘要: 一般发生在kafka环境搭建的时候 解决 使用较短的文件夹和文件的名称 减少文件夹树的深度 阅读全文
posted @ 2022-04-06 16:37 xiexie0812 阅读(1353) 评论(0) 推荐(0)
摘要: 1. Spring boot默认日志为logback,所以只要引入如下依赖,就会自动引入logback日志的jar包 <!-- Spring Boot Web 依赖 --> <dependency> <groupId>org.springframework.boot</groupId> <artif 阅读全文
posted @ 2022-04-06 10:55 xiexie0812 阅读(494) 评论(0) 推荐(0)
摘要: 1. 实体类 package com.xietest.demo.util.tree; import lombok.Builder; import lombok.Data; import java.util.List; @Data @Builder public class Menu { privat 阅读全文
posted @ 2022-04-05 14:32 xiexie0812 阅读(458) 评论(0) 推荐(0)
摘要: 引入依赖 <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.12</version> <!--scope为test表示依赖项目仅仅参与测试相关的工作,包括测试代码的编译--> <!--我们要 阅读全文
posted @ 2022-04-02 17:52 xiexie0812 阅读(193) 评论(0) 推荐(0)
摘要: package com.xie.test; import java.net.URI; import java.util.regex.Matcher; import java.util.regex.Pattern; /** * @Description 解析URL的主域名和参数工具类 * @Date 阅读全文
posted @ 2022-04-02 16:46 xiexie0812 阅读(361) 评论(0) 推荐(0)
摘要: ClassPathResource解析 先看Demo: @Test public void test() throws IOException { Resource res = new ClassPathResource("applicationContext.xml"); InputStream 阅读全文
posted @ 2022-04-02 16:34 xiexie0812 阅读(4531) 评论(0) 推荐(0)
摘要: package com.xie.util; import org.apache.commons.beanutils.BeanUtils; import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.refl 阅读全文
posted @ 2022-04-02 11:27 xiexie0812 阅读(402) 评论(0) 推荐(0)
摘要: select (unix_timestamp('2011-11-11 12:12:12')-unix_timestamp('2011-11-11 12:11:12'))/60 阅读全文
posted @ 2022-04-02 11:11 xiexie0812 阅读(38) 评论(0) 推荐(0)
摘要: 引入jar包 <!-- linux链接,远程操作服务器--> <dependency> <groupId>com.jcraft</groupId> <artifactId>jsch</artifactId> <version>0.1.55</version> </dependency> 工具类 pa 阅读全文
posted @ 2022-04-01 17:20 xiexie0812 阅读(237) 评论(0) 推荐(0)
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 20 下一页