springboot建立與資料庫關聯模組
建立步驟
1.匯入依賴
2.配置檔案
3.建立啟動類
1.匯入依賴
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-openfeign</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.persistence</groupId>
<artifactId>persistence-api</artifactId>
<version>1.0</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
</dependency>
<!--自定義公共模組,可見公共模組文章-->
<dependency>
<groupId>com.xx</groupId>
<artifactId>common_db</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
<dependency>
<groupId>com.xx</groupId>
<artifactId>service_goods_api</artifactId>
<version>1.0-SNAPSHOT</version>
</dependency>
</dependencies>
2.配置檔案
server:
port: 9011
spring:
application:
name: goods
datasource:
driver-class-name: com.mysql.jdbc.Driver
url: jdbc:mysql://192.168.200.128:3306/goods?useUnicode=true&characterEncoding=UTF-8&serverTimezone=UTC
username: root
password: root
eureka:
client:
service-url:
defaultZone: http://127.0.0.1:6868/eureka
instance:
prefer-ip-address: true
feign:
hystrix:
enabled: true
#hystrix 配置
hystrix:
command:
default:
execution:
timeout:
#如果enabled設定為false,則請求超時交給ribbon控制
enabled: true
isolation:
strategy: SEMAPHORE
3.建立啟動類
@SpringBootApplication
@EnableEurekaClient
//@MapperScan是tk.mybatis.spring.annotation包下的,用於掃描Mapper介面*
@MapperScan(basePackages = {"com.goods.dao"})
public class GoodsApplication {
public static void main(String[] args) {
SpringApplication.run(GoodsApplication.class);
}
}
相關文章
- Springboot專案啟動後自動建立多表關聯的資料庫與表的方案Spring Boot資料庫
- 關聯式資料庫與文件資料庫對比資料庫
- 例項,資料庫,資料字典與資料庫建立的關係資料庫
- SQL Server資料庫建立新使用者及關聯資料庫的方法教程SQLServer資料庫
- 2.1 關於建立資料庫資料庫
- 資料庫關聯問題資料庫
- DB2建立聯邦資料庫DB2資料庫
- 鍵值資料庫與關聯式資料庫有沒有融合的可能?資料庫
- Android資料庫高手祕籍(4):使用LitePal建立表關聯Android資料庫
- 關聯式資料庫很快會替代向量資料庫資料庫
- Web Sql 關聯式資料庫WebSQL資料庫
- 關聯式資料庫設計資料庫
- 關聯式資料庫之父 (轉)資料庫
- 資料庫也可以像電腦一樣組裝:使用Kafka建立關聯式資料庫 – Robert Yokota資料庫Kafka
- 使用 MAP CLASS 庫建立關聯容器
- 資料庫 - 關聯式資料庫標準語言SQL資料庫SQL
- 從關聯式資料庫遷移到NoSQL雲資料庫資料庫SQL
- 【轉載】關聯式資料庫還是NoSQL資料庫資料庫SQL
- [MYSQL] 資料庫建立與刪除MySql資料庫
- 關於ORACEL與異構資料庫之間建立dblink資料庫
- db2 建立資料庫與資料放置DB2資料庫
- 2.5.1 關於建立資料庫的子句資料庫
- 2.3.1 有關使用DBCA建立資料庫資料庫
- 關於建立DataGuard Physical Standby資料庫資料庫
- 關聯式資料庫分片原則資料庫
- 資料庫AR之關聯查詢資料庫
- 關聯式資料庫 Query_Execution資料庫
- 達夢資料庫建立檢視&MyBatis表能不能關聯檢視資料庫MyBatis
- springboot結合flyway自動建立資料庫及資料表Spring Boot資料庫
- 如何建立與現有資料庫相同的空資料庫資料庫
- 關係型資料庫:使用正規化建立資料庫(轉)資料庫
- 異構資料庫的關聯查詢 oracle hsodbc 關聯mysql資料庫OracleMySql
- 海量列式非關聯式資料庫HBase 架構,shell與API資料庫架構API
- sql.bsq與資料庫的建立SQL資料庫
- PostgreSQL:資料庫的建立與刪除SQL資料庫
- 關聯式資料庫的封建迷信資料庫
- 從關聯式資料庫遷移到CouchDB資料庫
- 關係型資料庫與非關係型資料庫介紹!資料庫