Java
middleStrong
这个作者很懒,什么都没留下…
展开
-
Java8 List排序
https://my.oschina.net/sdlvzg/blog/2243766转载 2021-03-19 11:12:27 · 142 阅读 · 0 评论 -
java从properties文件中取值,及找不到java.util.Properties对象类型解决办法
1.建立settings.properties文件,文件内容为logFilepath=值2.在spring.xml文件中添加 <util:properties id="settings" location="classpath:settings.properties"></util:properties>, 如果标签报错 添加以下代码x原创 2018-08-21 15:19:06 · 1109 阅读 · 0 评论 -
Java日期格式化
java字符串转日期Date startDate1=null;Date endDate1=null;if(!StringUtils.isEmpty(startDate) && !StringUtils.isEmpty(endDate)){ DateFormat format1 = new SimpleDateFormat("yyyy-MM-dd");//转换后的日期格式 ...原创 2018-12-06 14:40:38 · 117 阅读 · 0 评论 -
java将字符串json数组转换为list
//json字符串String jsonStr="";//json字符串转jsonArraynet.sf.json.JSONArray jsonArr=net.sf.json.JSONArray.fromObject(jsonStr); //如果不添加此行,包含日期格式的转换将报错JSONUtils.getMorpherRegistry().registerMorpher(new Dat...原创 2018-12-06 14:46:53 · 5312 阅读 · 0 评论 -
java从properties文件中取值 立即生效
Properties p = new Properties();String fileName = this.getClass().getClassLoader().getResource("specialData"+ File.separator+"pkgNetCheckPerson.properties").toURI().getPath();p.load(new FileInputSt...原创 2018-12-06 16:01:50 · 1090 阅读 · 0 评论 -
java通过反射获取model层@Table注解的唯一性
已知model层的注解为@Entity@Table(uniqueConstraints=@UniqueConstraint(columnNames={"属性1","属性2"...}))public class 类名{//此处省略}若要获取"属性1",“属性2”…的列表,可通过下面的方法实现String[] constraints=(String[])类名.getAnnotation...原创 2018-12-06 16:23:13 · 1353 阅读 · 0 评论 -
idea配置maven的开发模式和产品模式
1.在pom文件的上加入以下代码<profiles> <profile> <!-- 开发环境 --> <id原创 2019-02-15 10:13:00 · 911 阅读 · 0 评论