- Kotlin Blueprints
- Ashish Belagali Hardik Trivedi Akshay Chordiya
- 63字
- 2021-07-02 21:50:14
Gradle dependency
We need to add an additional Maven repository in our build.gradle file to fetch the artifacts from the Exposed library:
repositories {
...
// For Exposed library
maven { url "https://dl.bintray.com/kotlin/exposed" }
}
Add the following dependencies for the Exposed API and another dependency to configure transaction support in the application:
// Exposed
compile 'org.jetbrains.exposed:exposed:0.8.5'
// For transaction support
compile 'org.jetbrains.exposed:spring-transaction:0.8.5'
推薦閱讀
- PHP動(dòng)態(tài)網(wǎng)站程序設(shè)計(jì)
- 微信公眾平臺(tái)與小程序開(kāi)發(fā):從零搭建整套系統(tǒng)
- Java應(yīng)用開(kāi)發(fā)與實(shí)踐
- 精通搜索分析
- Silverlight魔幻銀燈
- 21天學(xué)通C++(第6版)
- Visual Basic學(xué)習(xí)手冊(cè)
- 領(lǐng)域驅(qū)動(dòng)設(shè)計(jì):軟件核心復(fù)雜性應(yīng)對(duì)之道(修訂版)
- C++寶典
- Spring技術(shù)內(nèi)幕:深入解析Spring架構(gòu)與設(shè)計(jì)原理(第2版)
- Java EE Web應(yīng)用開(kāi)發(fā)基礎(chǔ)
- STM8實(shí)戰(zhàn)
- R語(yǔ)言與網(wǎng)站分析
- Unity與C++網(wǎng)絡(luò)游戲開(kāi)發(fā)實(shí)戰(zhàn):基于VR、AI與分布式架構(gòu)
- C/C++語(yǔ)言程序開(kāi)發(fā)參考手冊(cè)