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資料庫
- 資料庫也可以像電腦一樣組裝:使用Kafka建立關聯式資料庫 – Robert Yokota資料庫Kafka
- 關聯式資料庫與文件資料庫對比資料庫
- Springboot建立maven多模組專案Spring BootMaven
- SQL Server資料庫建立新使用者及關聯資料庫的方法教程SQLServer資料庫
- QT繪圖模組與資料庫的結合QT繪圖資料庫
- 2.1 關於建立資料庫資料庫
- IDEA建立SpringBoot的多模組專案教程IdeaSpring Boot
- 關聯式資料庫很快會替代向量資料庫資料庫
- django哪個模組配置資料庫Django資料庫
- python資料庫模組-Cx_OraclePython資料庫Oracle
- Web Sql 關聯式資料庫WebSQL資料庫
- 2.5.1 關於建立資料庫的子句資料庫
- 2.3.1 有關使用DBCA建立資料庫資料庫
- 達夢資料庫建立檢視&MyBatis表能不能關聯檢視資料庫MyBatis
- 營銷模組資料庫表解析(二)資料庫
- sql.bsq與資料庫的建立SQL資料庫
- PostgreSQL:資料庫的建立與刪除SQL資料庫
- 關聯式資料庫 Query_Execution資料庫
- 建立資料庫資料庫
- 關係型資料庫與非關係型資料庫介紹!資料庫
- 海量列式非關聯式資料庫HBase 架構,shell與API資料庫架構API
- 使用node中fs模組建立和刪除資料夾
- 組態王與Access資料庫通訊--④資料庫測試資料庫
- 事件溯源超越關聯式資料庫 - confluent事件資料庫
- 建立資料策略的6個關鍵組成部分
- 跨模組介面與動態庫
- 建立資料庫表資料庫
- Mysql建立資料庫MySql資料庫
- Python資料庫模組(sqlite3,SQLite3)Python資料庫SQLite
- 資料治理管理平臺功能模組與特性
- 專案資料庫表設計與建立模型資料庫模型
- 2.3.2 關於使用互動式DBCA建立資料庫資料庫
- config表與其他資料表的關聯
- Nuxt Kit 的使用指南:模組建立與管理UX
- 架構與資料庫的關係架構資料庫
- 容器雲資源資料關聯與資料聯動的難點和解決思路
- 資料分析---matplotlib模組