08 2020 档案
摘要:Reports dangling Javadoc comments. Javadoc comment are dangling if they don’t belong to any class, method or field. For example a Javadoc comment in b
阅读全文
摘要:先看错误信息 Caused by: org.hibernate.exception.SQLGrammarException: could not execute statement at org.hibernate.exception.internal.SQLStateConversionDeleg
阅读全文
摘要:首先引入依赖 <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.5.6</version> </dependency> private fi
阅读全文
摘要:查询时很容易遇到需要将map转换为实体的情况,尤其跨虚拟机更是如此 import com.google.gson.Gson; public <T> T transMapToObj(Map map, Class<T> classOfT) { Gson gson = new Gson(); String
阅读全文