摘要:配置Checkstyle代码规范检查工具 <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>3.2.1</version> <c
阅读全文
摘要:本次commit代码 引入依赖 引入shiro <dependency> <groupId>org.apache.shiro</groupId> <artifactId>shiro-core</artifactId> <version>1.5.3</version> </dependency> <d
阅读全文
摘要:类型的且运算 interface A { a1: string a2: string } interface B { b1: number b2: string } let c: A & B = { a1: 'hi', a2: 'hello', b1: 2, b2: 'a' } // react c
阅读全文
摘要:初始化项目 使用Spring Initializr 选择依赖 MyBatis Framework JDBC API MySQL Driver Spring Web 填写其他必要信息后,点击GENERATE得到代码。 flyway 引入flyway </dependencies> <dependenc
阅读全文