上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 60 下一页
摘要: 参考:https://blog.csdn.net/weixin_37554783/article/details/125555155 在原本基础上,有增加了拷贝对象到对象,null不拷贝的方法。 import java.util.ArrayList; import java.util.Collect 阅读全文
posted @ 2022-10-18 10:29 正怒月神 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 今天尝试了几种方式,来获取关联对象。 关联对象,使用的 @OneToMany(fetch=FetchType.EAGER) 下面给一下总结: 一 Example 毫无疑问,很有信心,Example可以关联到对象。 事实也是这样。 但是Example好像只有and关系。这有点变扭。 @Autowire 阅读全文
posted @ 2022-10-12 17:05 正怒月神 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 一 POM <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-jexl3</artifactId> <version>3.2.1</version> </dependency> 二 封装 public cla 阅读全文
posted @ 2022-10-10 17:55 正怒月神 阅读(262) 评论(0) 推荐(0) 编辑
摘要: 特别记一下,对象的字段,首字母小写!!! 代码: @Override public List<MODEL_Vo> find(String str) { String sql="select * from tab "; Query query = em.createNativeQuery(sql); 阅读全文
posted @ 2022-09-22 18:38 正怒月神 阅读(497) 评论(0) 推荐(0) 编辑
摘要: 主要提到:关闭循环引用的配置 "$ref":"$.data[0].detail.wmsInboundorder.details[1]" 如下: import com.alibaba.fastjson.serializer.SerializeConfig;import com.alibaba.fast 阅读全文
posted @ 2022-09-20 10:19 正怒月神 阅读(836) 评论(0) 推荐(0) 编辑
摘要: 一 关闭Nexus服务 二 进入Nexus安装目录 执行 java -jar ./lib/support/nexus-orient-console.jar 三 进入数据库 connect plocal:../sonatype-work/nexus3/db/security admin admin 四 阅读全文
posted @ 2022-09-15 14:12 正怒月神 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 参考:https://dandelioncloud.cn/article/details/1469222182437101570/ 之前JPA打印sql时, sql和参数分开,使用起来很不方便。 后来看了网上的方式,成功的把sql和参数合并了。 一 POM <dependency> <groupId 阅读全文
posted @ 2022-09-13 11:57 正怒月神 阅读(374) 评论(0) 推荐(0) 编辑
摘要: 使用 乐天 / V-IM 作为网页即时聊天 刚安装运行完, Github: gitee: https://gitee.com/alyouge/V-IM 一,下载 不多说了,上面有链接。 下载完后,是这样的文件。 二,运行 1 仔细阅读README.md 2 启动v-im-server 这一步是spr 阅读全文
posted @ 2022-09-08 13:51 正怒月神 阅读(206) 评论(0) 推荐(0) 编辑
摘要: 直接上代码 @Data public class SS_Res { public SS_Res(String pol, String pod) { this.pol = pol; this.pod = pod; } private String pol; private String pod; } 阅读全文
posted @ 2022-08-17 10:16 正怒月神 阅读(80) 评论(0) 推荐(0) 编辑
摘要: 参考: https://docs.camunda.org/manual/latest/user-guide/model-api/bpmn-model-api/fluent-builder-api/ https://docs.camunda.org/manual/latest/user-guide/m 阅读全文
posted @ 2022-08-09 18:43 正怒月神 阅读(954) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 60 下一页