摘要:
1.maven 编译时出现 There are test failures [ERROR] Failed to execute goal org.apache.maven.plugins:maven-surefire-plugin:2.10:test (default-test) on projec 阅读全文
摘要:
一、背景 阿里给出了Seata的官方示例,地址: https://github.com/seata/seata-samples, 提供了很多示例: springcloud-seata-sharding-jdbc-mybatis-plus-samplesEasy to understand, high 阅读全文
摘要:
简介 java 枚举是一个特殊的类,一般表示常量,比如一周7天,一年4个季节。 示例 enum LevelEnum { LOW, MEDIUM, HIGH } 遍历 public class EnumTest { public static void main(String[] args) { Le 阅读全文