摘要: --删除空的表空间,但是不包含物理文件drop tablespace tablespace_name;--删除非空表空间,但是不包含物理文件drop tablespace tablespace_name including contents;--删除空表空间,包含物理文件drop tablespac 阅读全文
posted @ 2019-07-15 17:10 青竹玉简 阅读(769) 评论(0) 推荐(0) 编辑
摘要: <dependency> <groupId>com.oracle</groupId> <artifactId>ojdbc6</artifactId> <version>11.2.0.3</version></dependency> <dependency> <groupId>com.kingbase 阅读全文
posted @ 2019-07-15 14:07 青竹玉简 阅读(543) 评论(0) 推荐(0) 编辑
摘要: @Configuration public class WarnWebMvcConfigurationSupport extends WebMvcConfigurationSupport { /** * @Author AlanMa * @Description 全局fastJson替换 * @Param [converters] * @retu... 阅读全文
posted @ 2019-07-15 14:01 青竹玉简 阅读(1936) 评论(0) 推荐(0) 编辑
摘要: Example 1: // In Customer class: @ManyToMany @JoinTable(name="CUST_PHONES") public Set<PhoneNumber> getPhones() { return phones; } // In PhoneNumber c 阅读全文
posted @ 2019-07-15 13:45 青竹玉简 阅读(156) 评论(0) 推荐(0) 编辑