明天的太阳

导航

02 2023 档案

【shop-3】Checkstyle、SpotBugs、jacoco、单元测试、集成测试
摘要:配置Checkstyle代码规范检查工具 <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>3.2.1</version> <c 阅读全文

posted @ 2023-02-17 22:51 东方来客 阅读(78) 评论(0) 推荐(0)

【shop-2】使用shiro实现登录
摘要:本次commit代码 引入依赖 引入shiro <dependency> <groupId>org.apache.shiro</groupId> <artifactId>shiro-core</artifactId> <version>1.5.3</version> </dependency> <d 阅读全文

posted @ 2023-02-14 22:20 东方来客 阅读(37) 评论(0) 推荐(0)

TypeScript 高级类型
摘要:类型的且运算 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 阅读全文

posted @ 2023-02-12 23:53 东方来客 阅读(46) 评论(0) 推荐(0)

【shop-1】使用Spring Initializr初始化项目,配置使用flyway和MyBatis Generator
摘要:初始化项目 使用Spring Initializr 选择依赖 MyBatis Framework JDBC API MySQL Driver Spring Web 填写其他必要信息后,点击GENERATE得到代码。 flyway 引入flyway </dependencies> <dependenc 阅读全文

posted @ 2023-02-12 15:53 东方来客 阅读(100) 评论(0) 推荐(0)