idea建springcloud项目_idea快速创建SpringCloud项目

IDE开发工具:IntelliJ IDEA 14.0.2

版本管理:Maven

技术栈:SpringCloud

环境:JDK 1.8

一、创建Maven项目

1、File——>New Project ——>Maven 如图所示:

2、填写模块名称和项目路径

按照以上步骤,就简单的创建了一个Maven项目。

此时项目还不是SpringBoot项目!!

二、把maven项目变成SpringBoot项目

1、pom.xml引入需要的jar包

注意:按照各自项目实际情况;楼主是本项目由自己的maven私库引入SpringBoot所需jar包

引入SpringCloud所需jar包

引入ereka服务注册发现客户端所需jar包

引入mybatis-SpringCloud依赖jar包

引入kafka 所需jar包

引入redis 所需jar包

引入配置中心Spring config 客户端依赖jar包

等等,按照各自项目所需。

xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

4.0.0

com.**inks.e**s

msg

1.0-SNAPSHOT

jar

msg

Demo project for Spring Boot

org.springframework.boot

spring-boot-starter-parent

1.5.6.RELEASE

UTF-8

UTF-8

1.8

8.5.30

org.springframework.cloud

spring-cloud-starter-config

org.springframework.boot

spring-boot-starter-actuator

org.springframework.cloud

spring-cloud-starter-eureka

org.springframework.cloud

spring-cloud-starter-feign

org.springframework.kafka

spring-kafka

org.springframework.boot

spring-boot-starter-data-redis

org.springframework.boot

spring-boot-starter-web

org.springframework.boot

spring-boot-starter-test

test

org.mybatis.spring.boot

mybatis-spring-boot-starter

1.1.1

org.mybatis.generator

mybatis-generator-core

1.3.2

com.epaylinks.efps

common

0.0.1-SNAPSHOT

com.epaylinks.efps

logtracer

0.0.1-SNAPSHOT

org.apache.commons

commons-math

2.2

org.apache.httpcomponents

httpclient

4.5.3

org.apache.httpcomponents

httpasyncclient

4.1.1

io.github.openfeign.form

feign-form-spring

3.2.2

io.github.openfeign.form

feign-form

3.2.2

org.springframework.cloud

spring-cloud-dependencies

Dalston.SR2

pom

import

org.springframework.boot

spring-boot-maven-plugin

org.mybatis.generator

mybatis-generator-maven-plugin

1.3.2

src/main/resources/generatorConfig-mch.xml

true

true

com.oracle

ojdbc6

11.1.0.7.0

org.mybatis.generator

mybatis-generator-core

1.3.2

2、创建SpringCloud项目主入口类**Application

package com.**s.**s;

import com.**ks.e**.common.util.SpringContextUtils;

import org.springframework.beans.factory.annotation.Autowired;

import org.springframework.boot.SpringApplication;

import org.springframework.boot.autoconfigure.SpringBootApplication;

import org.springframework.boot.web.client.RestTemplateBuilder;

import org.springframework.cloud.context.config.annotation.RefreshScope;

import org.springframework.cloud.netflix.eureka.EnableEurekaClient;

import org.springframework.cloud.netflix.feign.EnableFeignClients;

import org.springframework.context.annotation.Bean;

import org.springframework.context.annotation.EnableAspectJAutoProxy;

import org.springframework.kafka.annotation.EnableKafka;

import org.springframework.scheduling.annotation.EnableScheduling;

import org.springframework.web.client.RestTemplate;

@RefreshScope

@EnableEurekaClient

@EnableFeignClients

@EnableKafka

@EnableScheduling

@EnableAspectJAutoProxy(proxyTargetClass=true , exposeProxy=true)

@SpringBootApplication

public class MsgApplication {

// 启动的时候要注意,由于我们在controller中注入了RestTemplate,所以启动的时候需要实例化该类的一个实例

@Autowired

private RestTemplateBuilder builder;

// 使用RestTemplateBuilder来实例化RestTemplate对象,spring默认已经注入了RestTemplateBuilder实例

@Bean

public RestTemplate restTemplate() {

return builder.build();

}

public static void main(String[] args) {

SpringApplication springApplication = new SpringApplication(MsgApplication.class);

SpringContextUtils.setApplicationContext(springApplication.run(args));

}

}

@SpringBootApplication 这个标注就表示,这个项目是SpringBoot项目,并且此类是项目的主入口类。

由以下main方法启动Application

public static void main(String[] args) {

SpringApplication springApplication = new SpringApplication(MsgApplication.class);

SpringContextUtils.setApplicationContext(springApplication.run(args));

}

到这里,SpringBoot项目已经完成一大半。接下来就是数据库连接配置以及注册中心config和Ereka等配置文件的配置了

三、注册中心和服务发现配置等

1、Spring Config Center配置项目的配置文件读取

楼主这里是以Spring Config Center作为配置中心来,配置读取项目所需的各种连接和配置信息等(Spring Config Center这里不作详细介绍)

2、GitLab远程托管配置信息

在Spring Config Center配置服务中心配置好了项目的连接和读取权限后,在gitlab上配置本项目的各种所需信息

这里详见另一篇文章

3、项目中加载各环境下对应的配置文件信息(dev、test、prod、uat)

这里以dev开发环境为例

所有SpringCloud项目均是从bootstrap.yml文件开始加载项目所需的各种连接和配置信息的,这是SpringCloud核心内置决定,可以去研究源码,这里不作详述。

4、bootstrap-dev.yml的配置如:

spring:

application:

name: msg

cloud:

config:

uri: http://172.20*.4*.80:9000/ # 配置spring cloud config服务端的url

profile: dev # 指定profile

label: master # 指定gitlab仓库的分支

主要是连接spring cloud config服务端,以获取远程gitlab上的配置信息。

5、application-dev.yml的配置如下:

eureka:

client:

registerWithEureka: true

service-url:

defaultZone: http://172.20.4.80:8000/eureka/

swagger:

enable: true

主要用来连接eureka服务注册和发现

到这里,SpringCLoud项目基本已经完成。接下来就是各种数据库建表Mybatis配置和撸代码的工作了。

觉得对你有帮助,关注博客和公众号。不定期分享最新前沿技术框架和bat大厂常用技术等,加群不定期分享行业内大牛直播讲课以及获得视频课件资料等。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值