溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

jpa與 kotlin如何正確的在spring boot中使用

發(fā)布時間:2020-11-27 15:24:09 來源:億速云 閱讀:355 作者:Leah 欄目:編程語言

今天就跟大家聊聊有關(guān) jpa與 kotlin如何正確的在spring boot中使用,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。

kotlin里面的data class來創(chuàng)建entity可以幫助我們減少不少的代碼,比如現(xiàn)在這個User的Entity,這是Java版本的:

@Entity
public class User {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
private long id;
private String firstName;
private String lastName;
public String getLastName() {
return lastName;
}
public void setLastName(String lastName) {
this.lastName = lastName;
}
public long getId() {
return id;
}
public void setId(long id) {
this.id = id;
}
public String getFirstName() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName = firstName;
}
}

上面的那一大段變成kotlin,就像下面的這樣的:

@Entity
data class User(@Id @GeneratedValue(strategy = GenerationType.AUTO) val id: Long = 0L, val firstName: String = "", val lastName: String = "")

連我這個用C#的人都覺得動心,如果你是Java的開發(fā)者,真的可以考慮試試看。

不過,這里還有個小提示,在kotlin里,如果你不給User給出默認(rèn)的構(gòu)造函數(shù),那是會報錯的,報錯信息為

o.s.boot.web.support.ErrorPageFilter : Forwarding to error page from request / due to exception No default constructor for entity: : com._1b2m.springbootkotin.User; nested exception is org.hibernate.InstantiationException: No default constructor for entity: : com._1b2m.springbootkotin.User

提示是沒有默認(rèn)的構(gòu)造函數(shù),我們可以為User類的構(gòu)造函數(shù)增加參數(shù)默認(rèn)值來完成,就如同上面我寫的樣子。

題外話,在Java里,IDE可以幫助我們生成getter和setter。但是就算是這樣,也沒有像kotlin那樣能把那么長的代碼縮成一行,一個entity一行就寫完,這感覺很不要太好。

另外,在Java里,使用CrudRepository時,這樣用就行:

@Autowired
UserRepository repository;

但是在kotlin里,編譯都無法通過,會報出這樣一條錯誤:

property must be initialized or be abstract

要解決這個問題,需要增加lateinit,就像 這樣:

@Autowired
lateinit var repository: UserRepository

看完上述內(nèi)容,你們對 jpa與 kotlin如何正確的在spring boot中使用有進(jìn)一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI