springboot项目--数据库配置(使用JpaRepository进行增删改查)

这篇博客介绍了如何在Spring Boot项目中配置数据库,包括创建商品表的SQL语句,添加MySQL相关依赖,设置application.yml文件,创建ProductCategory实体类,定义ProductCategoryRepository接口,实现了JpaRepository的增删改查功能。作者分享了个人的学习路线和面试经验,提供了Java开发全套学习资料和面试题库。
摘要由CSDN通过智能技术生成

CREATE TABLE product_category (

category_idint not null AUTO_INCREMENT,

category_name varchar(64)not null comment’类目名字’,

category_type decimal(8,2)not null comment’类目编号’,

create_time timestamp not null default current_timestamp comment’创建时间’,

update_time timestamp not null default current_timestamp on update current_timestamp

comment’修改时间’,

PRIMARY KEY (category_id),

UNIQUE KEY une_category_type (category_type)

)comment’商品表’;

下图红色圈出来就是刚才新建的表。

在这里插入图片描述

3.在spring项目的pom.xml里添加以下依赖:


mysql

mysql-connector-java

org.springframework.boot

spring-boot-starter-data-jpa

4.在reso

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值