- Spring Boot 2.0 Cookbook(Second Edition)
- Alex Antonov
- 106字
- 2021-06-24 19:24:37
How it works...
As we can see, the application started just fine, but as we didn't add any functionality or configure any services, it existed straight away. From the startup log, however, we do see that the autoconfiguration did take place. Let's take a look at the following lines:
Building JPA container EntityManagerFactory for persistence unit
'default' HHH000412: Hibernate Core {5.2.12.Final} HHH000400: Using dialect: org.hibernate.dialect.H2Dialect
This information tells us that, because we added the jdbc and data-jpa starters, the JPA container was created and will use Hibernate 5.2.12.Final to manage the persistence using H2Dialect. This was possible because we had the right classes in the classpath.
推薦閱讀
- 數(shù)據(jù)庫(kù)應(yīng)用實(shí)戰(zhàn)
- 有趣的二進(jìn)制:軟件安全與逆向分析
- Java Data Science Cookbook
- Visual Studio 2015 Cookbook(Second Edition)
- Oracle RAC 11g實(shí)戰(zhàn)指南
- 一個(gè)64位操作系統(tǒng)的設(shè)計(jì)與實(shí)現(xiàn)
- 企業(yè)級(jí)數(shù)據(jù)與AI項(xiàng)目成功之道
- Spark大數(shù)據(jù)編程實(shí)用教程
- 大數(shù)據(jù)技術(shù)入門
- 編寫有效用例
- 智慧的云計(jì)算
- MySQL技術(shù)內(nèi)幕:SQL編程
- 貫通SQL Server 2008數(shù)據(jù)庫(kù)系統(tǒng)開(kāi)發(fā)
- 活用數(shù)據(jù):驅(qū)動(dòng)業(yè)務(wù)的數(shù)據(jù)分析實(shí)戰(zhàn)
- Oracle 11g+ASP.NET數(shù)據(jù)庫(kù)系統(tǒng)開(kāi)發(fā)案例教程