上一页 1 ··· 6 7 8 9 10 11 12 下一页
摘要: 1 import java.lang.reflect.Field; 2 import java.lang.reflect.InvocationTargetException; 3 import java.lang.reflect.Method; 4 import java.lang.reflect. 阅读全文
posted @ 2020-06-18 11:39 明知山有小脑斧 阅读(2127) 评论(0) 推荐(0)
摘要: 主要用到这两个包: import java.util.regex.Matcher;import java.util.regex.Pattern; Pattern类用于创建一个正则表达式,生成一个Pattern对象并且编译一个正则表达式,也可以说创建一个匹配模式, 它的构造方法是私有的,不可以直接创建 阅读全文
posted @ 2020-06-17 10:18 明知山有小脑斧 阅读(6359) 评论(3) 推荐(1)
摘要: 问题: 原因:在springboot项目中IDEA对自动注入的误识别 解决:把Bean类的自动装配 取消选择 阅读全文
posted @ 2020-06-16 11:03 明知山有小脑斧 阅读(12067) 评论(0) 推荐(0)
摘要: 1.@Api:用在请求的类上,表示对类的说明 1 tags:说明该类的作用,参数是个数组,可以填多个。 2 value="该参数没什么意义,在UI界面上不显示,所以不用配置" 3 description = "用户基本信息操作" 2.@ApiOperation():用于方法,表示一个http请求访问 阅读全文
posted @ 2020-06-15 13:27 明知山有小脑斧 阅读(366) 评论(0) 推荐(0)
摘要: 在pom.xml文件添加 1 <!-- swagger --> 2 <dependency> 3 <groupId>io.springfox</groupId> 4 <artifactId>springfox-swagger2</artifactId> 5 <version>2.9.2</versi 阅读全文
posted @ 2020-06-11 14:13 明知山有小脑斧 阅读(355) 评论(0) 推荐(0)
摘要: import org.aspectj.lang.annotation.Aspect; import org.springframework.aop.Advisor; import org.springframework.aop.aspectj.AspectJExpressionPointcut; i 阅读全文
posted @ 2020-06-10 16:52 明知山有小脑斧 阅读(900) 评论(0) 推荐(0)
摘要: 1 import com.google.zxing.BarcodeFormat; 2 import com.google.zxing.EncodeHintType; 3 import com.google.zxing.MultiFormatWriter; 4 import com.google.zx 阅读全文
posted @ 2020-06-10 15:08 明知山有小脑斧 阅读(1180) 评论(0) 推荐(0)
摘要: import org.springframework.beans.BeansException; import org.springframework.beans.FatalBeanException; import org.springframework.util.Assert; import j 阅读全文
posted @ 2020-06-10 14:54 明知山有小脑斧 阅读(2226) 评论(0) 推荐(0)
摘要: 1.Linux 版本JDK下载地址 百度网盘下载地址:下载 提取码:cdh5 2.创建java安装文件路径(安装的应用习惯放到/usr/local 下) mkdir /usr/local/java 3.解压安装包命令 tar -zxvf jdk-8u251-linux-x64.tar.gz 4.配置 阅读全文
posted @ 2020-06-04 12:10 明知山有小脑斧 阅读(977) 评论(0) 推荐(1)
摘要: public String test(String inPath,String outPath) throws Exception { // 以GBK格式读取文件 FileInputStream fis = new FileInputStream(inPath); InputStreamReader 阅读全文
posted @ 2020-06-04 11:37 明知山有小脑斧 阅读(924) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 下一页