薄荷清凉sean

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2022年1月26日

摘要: 今天在Springboot项目中遇到个问题,在AOP中进行日志处理时,并不能处理拦截器interceptor中的日志,开始以为是AOP的优先级问题,后来把AOP日志切面的加载顺序用@Ordered(这里注意切面不设置@Ordered时在所有切面中优先级最低,设置的数值越小优先级越高)调整到最高也还是 阅读全文
posted @ 2022-01-26 21:55 薄荷清凉sean 阅读(739) 评论(0) 推荐(1) 编辑

2022年1月11日

摘要: 转自:https://www.cnblogs.com/barrywxx/p/13233373.html 最近在写脚本时遇到要在运行时生成类的情况,上网搜了很多资料,上面链接的几种方法很全面。 本人使用的是Groovy脚本的方式,如下: public Class<?> testGroovyGenera 阅读全文
posted @ 2022-01-11 22:25 薄荷清凉sean 阅读(229) 评论(0) 推荐(0) 编辑

2022年1月4日

摘要: import org.apache.http.client.HttpClient; import org.apache.http.client.config.RequestConfig; import org.apache.http.config.Registry; import org.apach 阅读全文
posted @ 2022-01-04 23:00 薄荷清凉sean 阅读(689) 评论(0) 推荐(0) 编辑

2021年12月24日

摘要: ` import org.springframework.http.*; import org.springframework.http.client.SimpleClientHttpRequestFactory; import org.springframework.util.LinkedMult 阅读全文
posted @ 2021-12-24 22:58 薄荷清凉sean 阅读(1806) 评论(0) 推荐(0) 编辑

摘要: 今天学习可一个新技能:服务器部署的项目在本地debug。 第一步:先设置IDEA 具体设置: 填上对应的IP和端口,要和第二步里面的保持一致。 第二步:远程服务器启动 java -jar -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,ad 阅读全文
posted @ 2021-12-24 22:18 薄荷清凉sean 阅读(63) 评论(0) 推荐(0) 编辑