SpringBoot连接PostgreSQL+MybatisPlus入门案例
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.extension.activerecord.Model;
import java.io.Serializable;
@TableName("your_table_name")
public class YourEntity extends Model<YourEntity> implements Serializable {
private static final long serialVersionUID = 1L;
// 定义实体类属性,与数据库表的字段对应
private Long id;
private String name;
// 省略其他属性和getter/setter方法
// 如果使用了MyBatis Plus提供的自动 SQL 生成的功能,则无需编写 Mapper 接口和 XML 文件
}
// Mapper接口
public interface YourEntityMapper extends BaseMapper<YourEntity> {
// 在这里定义其他的数据库操作方法,如果不需要可以不定义
}
// 在Spring Boot的配置文件中添加PostgreSQL和MyBatis Plus的配置
spring:
datasource:
url: jdbc:postgresql://localhost:5432/your_database
username: your_username
password: your_password
driver-class-name: org.postgresql.Driver
mybatis-plus:
mapper-locations: classpath:/mapper/*.xml # 如果使用了XML配置方式,指定XML文件位置
type-aliases-package: com.yourpackage.entity # 指定实体类所在包名
// 在Spring Boot启动类上添加@MapperScan注解,扫描Mapper接口所在的包路径
@MapperScan("com.yourpackage.mapper")
@SpringBootApplication
public class YourApplication {
public static void main(String[] args) {
SpringApplication.run(YourApplication.class, args);
}
}
以上代码提供了一个简单的实体类示例,并假设你已经配置了Spring Boot项目与PostgreSQL数据库和MyBatis Plus的整合。这个示例展示了如何定义一个实体类,如何使用MyBatis Plus的BaseMapper
,以及如何在Spring Boot应用中启动类上扫描Mapper接口。这个示例为开发者提供了一个快速上手的模板。
评论已关闭