JAVA springcloud ssm b2b2c多使用者商城系統原始碼 (四)SpringBoot 整合JPA

happywawa發表於2019-03-20

JPA全稱Java Persistence API.JPA通過JDK 5.0註解或XML描述物件-關係表的對映關係,並將執行期的實體物件持久化到資料庫中。

JPA 的目標之一是制定一個可以由很多供應商實現的API,並且開發人員可以編碼來實現該API,而不是使用私有供應商特有的API。

JPA是需要Provider來實現其功能的,Hibernate就是JPA Provider中很強的一個,應該說無人能出其右。從功能上來說,JPA就是Hibernate功能的一個子集。

新增相關依賴

新增spring-boot-starter-jdbc依賴:

複製程式碼
1
2
3
4
5
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa
</artifactId>
</dependency>

  新增mysql連線類和連線池類:

1
2
3
4
5
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
</dependency>

  

配置資料來源,在application.properties檔案配置:

1
2
3
4
5
6
7
8
9
10
11
spring:
datasource:
driver-class-name: com.mysql.jdbc.Driver
url: jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=utf8&characterSetResults=utf8
username: root
password: 123456
jpa:
hibernate:
ddl-auto: update # 第一次簡表create 後面用update
show-sql: true

  

注意,如果通過jpa在資料庫中建表,將jpa.hibernate,ddl-auto改為create,建完表之後,要改為update,要不然每次重啟工程會刪除表並新建。

建立實體類

通過@Entity 表明是一個對映的實體類, @Id表明id, @GeneratedValue 欄位自動生成

1
2
3
4
5
6
7
8
9
10
@Entity
public class Account {
@Id
@GeneratedValue
private int id ;
private String name ;
private double money;
... 省略getter setter
}

  

Dao層

資料訪問層,通過編寫一個繼承自 JpaRepository 的介面就能完成資料訪問,其中包含了幾本的單表查詢的方法,非常的方便。值得注意的是,這個Account 物件名,而不是具體的表名,另外Interger是主鍵的型別,一般為Integer或者Long

1
2
public interface AccountDao extends JpaRepository<Account,Integer> {
}

Spring Cloud大型企業分散式微服務雲構建的B2B2C電子商務平臺原始碼請加企鵝求求:一零三八七七四六二六 


相關文章