maven
仓库Local Repository - 本地库 存放在本地计算机的仓库 Central Repository - 中央库 Maven 中央仓库是由 Maven 社区提供的仓库,其中包含了大量常用的库。 Remote Repository - 远程库 中央仓库 类似于github Maven搜索依赖项时,会按照:本地库、中央库和远程库的顺序进行。 1、http://mvnrepository.com/2、https://repo.maven.apache.org/maven2 阿里中央仓库 <repository> <id>alimaven</id> <name>aliyun maven</name> <url>http://ma..
更多mybatis-plus
以Spring Boot工程为例基本使用 引入Spring Boot Starter 等依赖包 maven添加依赖 <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus</artifactId> <version>最新版本</version> </dependency> 在application.yml配置数据库配置 # DataSource Config spring: datasource: driver-class-name: org.h2.Driver schema: ..
更多