
Java
Jredreamer
这个作者很懒,什么都没留下…
展开
-
发送邮件附件名tcmime.*.bin
默认java关于邮箱的参数splitlongparameters为true, 即太长会处理为.binstatic { System.setProperty("mail.mime.splitlongparameters", "false"); }中文附件名乱码MimeUtility.encodeText(fileName, "UTF-8", "B");原创 2022-05-30 10:26:56 · 1254 阅读 · 0 评论 -
使用hutool获取所有下级节点
@Slf4jpublic class MainTest { public static void main(String[] args) throws IOException { List<Tree<Long>> list = new ArrayList<>(); Tree<Long> t1 = new Tree<>(); t1.setId(1L); t1.setPare原创 2021-12-03 14:11:43 · 2470 阅读 · 0 评论 -
SpringBoot获取resources下的文件
例如下载/resources/excel/template.xlsx @GetMapping("/download") public void downloadFile(HttpServletRequest request, HttpServletResponse response) { String fullFileName = "excel/template.xlsx"; ExcelUtils.ex原创 2021-12-01 16:56:37 · 1044 阅读 · 0 评论 -
Jackson自定义反序列化,将对象属性反序列化成字符串
public class NoticeResponse { @JsonDeserialize(using = ContentSerializer.class) private String content;}static class ContentSerializer extends JsonDeserializer<String> { public ContentSerializer() { } @Override .原创 2021-11-23 18:49:22 · 838 阅读 · 0 评论 -
SpringSecurity异步执行时上线文传递
官网说明: https://spring.io/guides/topicals/spring-security-architecture原创 2021-05-07 20:42:03 · 221 阅读 · 0 评论 -
SpringBoot发送邮件报错:Got bad greeting from SMTP host: smtp.exmail.qq.com, port: 465, response: [EOF]
错误Got bad greeting from SMTP host: smtp.exmail.qq.com, port: 465, response: [EOF]原配置:spring: mail: default-encoding: UTF-8 host: smtp.exmail.qq.com password: password port: 465 username: username@mail.com修改后:spring: mail:原创 2021-03-26 11:28:34 · 14463 阅读 · 5 评论 -
高德地图逆地理编码时city返回数组或者空字符串的反序列化的问题
问题描述高德地图逆地理编码接口返回数据是,city字段有时为[], 有时为字符串:请注意:当城市是省直辖县时返回为空,以及城市为北京、上海、天津、重庆四个直辖市时,该字段返回为空;使用Jackson反序列化时会有问题,解决办法如下: @Getter @Setter @ToString public static class AddressComponent { private String country; private Stri原创 2021-03-02 19:04:50 · 1970 阅读 · 0 评论 -
替换文本中的URL为超链接标签<a>
public static String regexURL(String str) { String regex = "((http|ftp|https)://)?" + "(([a-zA-Z0-9\\._-]+\\." + "[a-zA-Z]{2,6})|([0-9]{1,3}\\.[0-9]{1,3}\\." + "[0-9]{1,3}\\.[0-9]{1,3}))(:[0-9]转载 2020-12-09 18:16:54 · 594 阅读 · 0 评论 -
升级到Springboot2之后shiro登录403
问题描述:springboot从1.5 到 springboot2.1 时,Shiro的配置都没有变,但是登录url也被拦截了返回403原因:在springboot1.5中server: context-path: /myapp升级到2之后,需要改为server: servlet: context-path: /myapp...原创 2020-10-14 11:15:50 · 485 阅读 · 0 评论 -
java.lang.SecurityException: JCE cannot authenticate the provider BC
错误信息: java.lang.SecurityException: JCE cannot authenticate the provider BC环境描述:jdk 11.0.3tomcat 8.5.8加解密依赖hutool<dependency> <groupId>cn.hutool</groupId> <artifactId>hutool-all</artifactId> <version>5.原创 2020-10-10 18:53:50 · 1470 阅读 · 0 评论 -
Shiro Realm中使用dubbo的service时无法注入的问题
问题描述ShiroConfig 中配置Realm,而Realm中调用了dubbo的服务。ShiroConfig.java@Autowiredprivate IShiroService shiroService@Bean("shiroDbRealm")public ShiroDbRealm shiroDbRealm() { ShiroDbRealm shiroDbRealm = new ShiroDbRealm(); // 测试 shiroService 尚未注入 sh原创 2020-09-30 11:37:24 · 330 阅读 · 0 评论 -
NoSuchAlgorithmException: Cannot find any provider supporting AES/CBC/PKCS7Padding
参考:https://www.liaoxuefeng.com/wiki/1252599548343744/1305362418368545Java标准库不支持AES/CBC/PKCS7Padding 可以使用BouncyCastle库中的算法。具体操作添加依赖<dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk15on</artifact原创 2020-09-29 12:11:43 · 991 阅读 · 1 评论 -
java8升级到java11时maven编译报错 [ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plug
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (default-compile) on project orderapp: Fatal error compiling: CompilerException: NullPointerException -> [Help 1]解决办法:添加Maven依赖<dependency> <gro原创 2020-08-24 18:21:08 · 557 阅读 · 0 评论 -
Docker+ Springboot本地模拟集群
第一步:拉取nginx的官方镜像镜像地址: https://hub.docker.com/search?q=nginx&type=image使用NGINX的官方镜像,然后拉取到本地执行docker images如果有下面的信息则表示拉取成功第二步:nginx.conf文件如下user nginx;worker_processes auto; # error_log /Users/mac/Desktop/nginx/log/error.log warn;# pid原创 2020-06-09 09:58:10 · 361 阅读 · 0 评论 -
Http Https Tcp概述
参考资料:https://juejin.im/post/5d7085f6f265da03dd3d92f6https://www.cnblogs.com/ttltry-air/archive/2012/08/20/2647898.htmlhttps://www.zhihu.com/question/302412059https://juejin.im/post/5ab308e9f265da238e0da39bhttps://www.w3ctech.com/topic/1563https://dr转载 2020-05-21 19:20:18 · 666 阅读 · 0 评论 -
JAVA优雅的退出机制
JAVA优雅的退出机制参考:Netty 优雅退出机制和原理Java 优雅地退出程序每天一个linux命令(42):kill命令一、JAVA进程退出时机:虚拟机中可能同时有多个线程运行,只有当所有的非守护线程(通常都是用户线程)都结束的时候,虚拟机的进程才会结束,不管当前运行的线程是不是main线程。main 线程运行结束,如果此时运行的其他线程全部是 Daemon ...原创 2020-01-17 10:27:28 · 1599 阅读 · 0 评论 -
取三个整数的中间数
private static int med3(int a, int b, int c) { return a > b ? (b > c ? b : a c ? a : b }原创 2011-11-08 16:48:00 · 2137 阅读 · 0 评论 -
Java 将字符串动态生成字节码的一种方法
可以生成可执行的class文件 直接上能执行代码:public class Test { /** * @param args */ @SuppressWarnings("static-access") public static void main(String[] args) { try { new Test().calculate("234 - (原创 2011-11-10 18:21:17 · 3785 阅读 · 3 评论 -
java正则表达式(HTML提取)
1、 过滤标签]*\\s*>\\s*(.*?)\\s*2、过滤Img标签]*)\\s*/?\\s*>3、过滤Img标签下的src]*)src\\s*=\\s*([^>]+)4、过滤Javascript标签]*?>[\\s\\S]*?5、link标签]*\\s*/?\\s*>6、link标签]*?\\s*>\\s*[\\s\\S]*?\原创 2012-04-01 12:05:32 · 7621 阅读 · 0 评论 -
Java基础 之软引用、弱引用、虚引用
1、概述 在JDK1.2以前的版本中,当一个对象不被任何变量引用,那么程序就无法再使用这个对象。也就是说,只有对象处于可触及状态,程序才能使用它。这 就像在日常生活中,从商店购买了某样物品后,如果有用,就一直保留它,否则就把它扔到垃圾箱,由清洁工人收走。一般说来,如果物品已经被扔到垃圾箱,想再 把它捡回来使用就不可能了。 但有时候情况并不这么简单,你可能会遇到类似鸡肋一样的物品转载 2012-06-26 17:02:39 · 1484 阅读 · 0 评论 -
ThreadPoolExecutor使用介绍
private static ExecutorService exec = new ThreadPoolExecutor(8, 8, 0L,TimeUnit.MILLISECONDS, new LinkedBlockingQueue(100000),new ThreadPoolExecutor.CallerRunsPolicy());一、简介 线程池类为 java.转载 2012-06-26 14:46:11 · 720 阅读 · 0 评论 -
java6调用运行javascript代码
简单记录下,java实现字符串表达式解析的一种方式:详细信息转自:http://hi.baidu.com/onlymeteor/item/0999022747b9e1d6a417b661import javax.script.*;import static java.lang.System.*;public class FirstJavaScript { public st转载 2012-12-04 09:39:42 · 727 阅读 · 0 评论 -
eclipse删除空行
转自:http://www.cnblogs.com/olvo/archive/2012/04/14/2447227.htmleclipse删除空行1.打开源码编辑器 2.使用快捷键Ctrl+f 3.在Find输入框中输入:^\s*\n 3.Replace With输入框的值为空 4.在【Options】选中的"Regular expressions"原创 2012-12-24 14:37:41 · 512 阅读 · 0 评论 -
(转载)JAVA全角半角转换
转自:http://blog.youkuaiyun.com/wanghangzhou1984/article/details/5950440import java.io.UnsupportedEncodingException;public class FullCharConverter { public static void main(String[] args) throws Un转载 2012-12-24 15:02:21 · 742 阅读 · 0 评论 -
HttpClient下载文件
private boolean download(String url, String bundleId, String filemd5) { HttpClient httpClient1 = new DefaultHttpClient(); HttpGet httpGet1 = new HttpGet(url); try { HttpResponse httpResponse1原创 2012-12-25 17:06:18 · 10250 阅读 · 0 评论 -
pinyin4J使用
转自:http://wister.iteye.com/blog/334562import java.util.HashSet;import java.util.Set;import net.sourceforge.pinyin4j.PinyinHelper;import net.sourceforge.pinyin4j.format.HanyuPinyinCaseType;转载 2012-12-17 09:42:21 · 601 阅读 · 0 评论 -
Spring restful web service编码乱码问题
转自:http://blog.youkuaiyun.com/cm_0914/article/details/8003335Spring MVC从3.0开始支持RESTSpring MVC从3.0开始支持REST,主要是通过@PathVariable来处理请求参数和路径的映射.假设在Controller中定义了如下的请求映射@RequestMapping(value =转载 2012-12-18 10:40:34 · 6200 阅读 · 0 评论 -
爬取gzip加密的网页
GetMethod method = new GetMethod(url); method.setRequestHeader("Accept-Encoding", "gzip, deflate"); try { /* 获得信息载体 */ int state = getHttpClient().executeMethod(method); if (state == 200)原创 2013-01-10 17:47:28 · 1872 阅读 · 0 评论 -
jsoup解析网页,类似jquery选择器的超强功能
jsoup API:http://www.open-open.com/jsoup/selector-syntax.htm原创 2013-01-11 11:05:07 · 1042 阅读 · 0 评论 -
java日期格式处理
日期字符串:Wed, 16 Jan 2013 19:01:18 EST日期格式:EEE, dd MMM yyyy HH:mm:ss ZZZ参考:http://blog.163.com/zhaowenchao_vip/blog/static/1715151442011524114322505/为了防止遗忘,先将页面copy一下时间和日期中常用到的几个类:java.util转载 2013-01-17 13:24:19 · 4530 阅读 · 0 评论 -
Java中getResourceAsStream的用法(转自:http://www.cnblogs.com/javayuer/archive/2011/01/02/1924192.html)
Java中getResourceAsStream的用法首先,Java中的getResourceAsStream有以下几种: 1. Class.getResourceAsStream(String path) : path 不以’/'开头时默认是从此类所在的包下取资源,以’/'开头则是从ClassPath根下获取。其只是通过path构造一个绝对路径,最终还是由ClassLoader获取资转载 2013-02-04 16:18:34 · 1262 阅读 · 0 评论 -
java 读取网络图片的大小(宽+高)
InputStream is = new URL("http://ruanliecache.rydigital.com/rt0/rs640x538/fy/uploads/2013/04/1146.jpg").openStream(); BufferedImage sourceImg =ImageIO.read(is); // //原创 2013-04-02 19:45:25 · 4094 阅读 · 3 评论 -
java StackTraceElement 日志
public class LogerUtil { /** * 统一的成功日志消息 * * @param usedTime * 耗時 * @param parms * 参数列表 * @return */ public static String getSuccessMessage(long startTime, St原创 2013-03-26 10:27:00 · 4178 阅读 · 0 评论 -
JAVA 把十六进制Unicode编码字符串转换为中文字符串
/** * 把十六进制Unicode编码字符串转换为中文字符串 */ public static String unicodeToString(String str) { Pattern pattern = Pattern.compile("(\\\\u(\\p{XDigit}{4}))"); Matcher matcher = pattern.matcher(str); c原创 2013-03-26 10:25:23 · 1796 阅读 · 0 评论 -
junit 单元测试
import org.junit.After;import org.junit.Before;import org.junit.runner.RunWith;import org.springframework.beans.factory.annotation.Autowired;import org.springframework.http.HttpEntity;import org.原创 2013-04-16 10:18:26 · 1199 阅读 · 0 评论 -
java 四舍五入
/** * 提供精确的小数位四舍五入处理。 * @param v 需要四舍五入的数字 * @param scale 小数点后保留几位 * @return 四舍五入后的结果 */ public static double round(double v,int scale){ if(scale<0){ r转载 2013-04-18 14:59:50 · 645 阅读 · 0 评论 -
IntelliJ Idea 常用快捷键列表
转自:http://blog.youkuaiyun.com/childhooders/article/details/4319679Alt+回车 导入包,自动修正Ctrl+N 查找类Ctrl+Shift+N 查找文件Ctrl+Alt+L 格式化代码Ctrl+Alt+O 优化导入的类和包Alt+Insert 生成代码(如get,set方法,构造函数等)Ctrl+E或转载 2013-05-10 10:27:11 · 663 阅读 · 0 评论 -
maven插件
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd原创 2013-06-04 16:11:08 · 661 阅读 · 0 评论 -
学习资料地址
http://dl.vmall.com/c09rsidzjbhttp://pan.baidu.com/share/link?shareid=3739316113&uk=4076915866#dir/path=%2Fstudy北京尚学堂视频教程下载地址 http://www.bjsxt.com/shipinxiazai/私塾视频教程下载地原创 2013-06-14 08:50:06 · 692 阅读 · 0 评论 -
springMVC文件上传
转自:http://blog.youkuaiyun.com/jiji0801/article/details/8571337在使用springMVC进行系统实现时,springMVC默认的解析器里面是没有加入对文件上传的解析的,这可以方便我们实现自己的文件上传。但如果你想使用springMVC对文件上传的解析器来处理文件上传的时候就需要在spring的applicationContext里转载 2013-07-30 16:54:26 · 917 阅读 · 0 评论