您好,登錄后才能下訂單哦!
這篇文章給大家介紹在SpringBoot中怎么加載初始化數(shù)據(jù),內(nèi)容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
依賴條件
Spring Boot的依賴我們就不將了,因為本例將會有數(shù)據(jù)庫的操作,我們這里使用H2內(nèi)存數(shù)據(jù)庫方便測試:
<dependency> <groupId>com.h3database</groupId> <artifactId>h3</artifactId> <scope>runtime</scope> </dependency>
我們需要使用JPA來創(chuàng)建Entity:
@Entitypublic class Country { @Id @GeneratedValue(strategy = IDENTITY) private Integer id; @Column(nullable = false) private String name; //...}
我們這樣定義repository:
public interface CountryRepository extends CrudRepository<Country, Integer> { List<Country> findByName(String name);}
如果這時候我們啟動Spring Boot程序,將會自動創(chuàng)建Country表。
data.sql文件
上面我們創(chuàng)建好了數(shù)據(jù)表格,我們可以使用data.sql來加載文件:
INSERT INTO country (name) VALUES ('India');INSERT INTO country (name) VALUES ('Brazil');INSERT INTO country (name) VALUES ('USA');INSERT INTO country (name) VALUES ('Italy');
在data.sql文件中我們插入了4條數(shù)據(jù),可以寫個測試例子測試一下:
@RunWith(SpringRunner.class)@SpringBootTest(classes = LoadIniDataApp.class)public class SpringBootInitialLoadIntegrationTest { @Autowired private CountryRepository countryRepository; @Test public void testInitDataForTestClass() { assertEquals(4, countryRepository.count()); }}
schema.sql 文件
有時候我們需要自定義數(shù)據(jù)庫的schema,這時候我們可以使用到schema.sql文件。
先看一個schema.sql的例子:
CREATE TABLE country ( id INTEGER NOT NULL AUTO_INCREMENT, name VARCHAR(128) NOT NULL, PRIMARY KEY (id));
Spring Boot會自動加載這個schema文件。
我們需要關(guān)閉spring boot的schema自動創(chuàng)建功能以防沖突:
spring.jpa.hibernate.ddl-auto=none
spring.jpa.hibernate.ddl-auto 有如下幾個選項:
create : 首先drop現(xiàn)有的tables,然后創(chuàng)建新的tables update : 這個模式不會刪除現(xiàn)有的tables,它會比較現(xiàn)有的tables和新的注解或者xml配置是否一致,然后更新。 create-drop : 和create很類似,不同的是會在程序運行完畢后自動drop掉tables。通常用在單元測試中。 validate : 只會做table是否存在的驗證,不存在則會報錯。 none : 關(guān)閉ddl自動生成功能。
如果Spring Boot沒有檢測到自定義的schema manager的話,則會自動使用create-drop模式。否則使用none模式。
@sql注解
@Sql 是測試包中的一個注解,可以顯示的導入要執(zhí)行的sql文件,它可以用在class上或者方法之上,如下所示:
@Test @Sql({"classpath:new_country.sql"}) public void testLoadDataForTestCase() { assertEquals(6, countryRepository.count()); }
上面的例子將會顯示的導入classpath中的new_country.sql文件。
@Sql有如下幾個屬性:
config : 用來配置SQL腳本,我們在下面的@SqlConfig詳細講解。 executionPhase : 可以選擇腳本是在BEFORE_TEST_METHOD 或者 AFTER_TEST_METHOD來執(zhí)行。 statements: 可以接受內(nèi)聯(lián)的sql語句 scripts: 可以指明要執(zhí)行腳本的路徑
@SqlConfig 注解
@SqlConfig主要用在class級別或者用在@Sql注解的config屬性中:
@Sql(scripts = {"classpath:new_country2.sql"}, config = @SqlConfig(encoding = "utf-8", transactionMode = SqlConfig.TransactionMode.ISOLATED))
@SqlConfig有如下幾個屬性:
blockCommentStartDelimiter: 指明了SQL腳本的開始標記。 blockCommentEndDelimiter: SQL腳本的結(jié)束標記。 commentPrefix: SQL 腳本的注釋標記 dataSource : javax.sql.DataSource的名字,指定該腳本將會在什么datasource下執(zhí)行 encoding: SQL 文件的編碼 errorMode: 腳本遇到錯誤的處理模式 separator: 分隔符 transactionManager: 指定的PlatformTransactionManager transactionMode: 事務(wù)模式
@Sql是可以多個同時使用的,如下所示:
@Test @Sql({"classpath:new_country.sql"}) @Sql(scripts = {"classpath:new_country2.sql"}, config = @SqlConfig(encoding = "utf-8", transactionMode = SqlConfig.TransactionMode.ISOLATED)) public void testLoadDataForTestCase() { assertEquals(6, countryRepository.count()); }
關(guān)于在SpringBoot中怎么加載初始化數(shù)據(jù)就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。