java_base
java基础
泛qq_39502868
这个作者很懒,什么都没留下…
展开
-
mapper.xml编译错误
Unsatisfied dependency expressed through field 'materielapplyService'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'materielApplyServiceImpl': Injection of resource dependencies failed; nested原创 2022-01-14 09:40:29 · 274 阅读 · 0 评论 -
springboot重复注入,启动异常
重复注入(@autowired)导致如下的异常原创 2022-01-14 09:37:03 · 318 阅读 · 0 评论 -
com.google.gson.stream.MalformedJsonException的解决办法
json解析工具检查原创 2022-01-14 09:42:14 · 544 阅读 · 0 评论 -
java集合模糊匹配
package com.ddd; import org.junit.Test; import java.util.ArrayList; import java.util.List; import java.util.stream.Collectors; /** @author @date 2021/6/5 14:17 @description */ public class AopProxyFactory { @Test public void testt() { //被迭代的集合 List&l原创 2022-01-14 09:35:17 · 1248 阅读 · 0 评论 -
java获取IP地址
/** * 获取IP地址的方法 * @param request 传一个request对象下来 * @return */ public static String getIpAddress(HttpServletRequest request) { String ip = request.getHeader("x-forwarded-for"); if (ip == null || ip.length() == 0 || "unknown".equalsIgnoreCase(ip)) {原创 2022-01-14 09:34:42 · 159 阅读 · 0 评论 -
java发mail
import org.junit.Test; import javax.mail.Session; import javax.mail.Transport; import javax.mail.internet.InternetAddress; import javax.mail.internet.MimeMessage; import java.util.Date; import java.util.Properties; /** @author @date 2021/7/22 8:48 @d原创 2022-01-14 09:33:58 · 128 阅读 · 0 评论