摘要: 引入依赖 <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)