02 2025 档案
摘要:If you want to convert a timestamp from one timezone to another, use withZoneSameInstant(). withZoneSameLocal() will change the zone but keep all the
阅读全文
摘要:ibatis基本操作 import java.util.List; import org.apache.ibatis.annotations.Delete; import org.apache.ibatis.annotations.Insert; import org.apache.ibatis.a
阅读全文
摘要:登录某个container docker exec -it contain-name bash 查看某个container的相关log docker logs nginx docker ps 相关例子 docker ps --no-trunc docker ps –format=json docke
阅读全文
摘要:查看某个表的结构 如下例为查看表VM的数据结构 select TABLE_SCHEMA, TABLE_NAME, COLUMN_NAME, IS_NULLABLE, DATA_TYPE, COLUMN_TYPE, COLUMN_KEY from information_schema.columns
阅读全文
摘要:OneToOne, OneToMany, ManyToOne 可配置属性 CascadeType.cascade=ALL is equivalent to cascade={PERSIST, MERGE, REMOVE, REFRESH, DETACH}. orphanRemoval Whether
阅读全文
摘要:参考 https://www.geeksforgeeks.org/java-debugger-jdb/ https://docs.oracle.com/en/java/javase/17/docs/specs/man/jdb.html Java Debugger (JDB) is a command
阅读全文