spring boot创建和数据库关联模块
更新:HHH   时间:2023-1-7


今天就跟大家聊聊有关spring boot创建和数据库关联模块,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。

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&#63;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);
 }
}

看完上述内容,你们对spring boot创建和数据库关联模块有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注天达云行业资讯频道,感谢大家的支持。

返回开发技术教程...