发布时间:2023-07-09 18:30
配置Maven
去http://maven.apache.org/download.cgi下载Maven
下载完成解压,找到settings.xml文件,配置目录,镜像以及jdk版本
apache-maven-3.6.2-bin → apache-maven-3.6.2 → conf → settings.xml
打开编辑 建议使用 notepad++ 工具
配置Maven 本地仓库目录
aliyun maven
central
aliyun maven
http://maven.aliyun.com/nexus/content/groups/public
mirrorId
repositoryId
Human Readable Name for this Mirror.
http://my.repository.com/repo/path
jdk18
true
1.8
1.8
1.8
1.8
配置完成保存
在DIEA设置 maven 的地址 File → Sttings → 搜索 maven
配置完成创建项目
File > New > Project…
Spring initializr > 选择JDK 路径 > Next
分组 > 项目名称 > 包名 > Next
Next
创建完成
这一步比较重要,看准了再复制粘贴额
1.8
org.springframework.boot
spring-boot-starter
org.springframework.boot
spring-boot-starter-test
test
org.springframework.cloud
spring-cloud-starter-netflix-eureka-server
org.springframework.cloud
spring-cloud-dependencies
Finchley.M8
pom
import
org.springframework.boot
spring-boot-maven-plugin
spring-milestones
Spring Milestones
https://repo.spring.io/milestone
false
项目名 > src > main > resources > application.properties
#服务名称
spring.application.name=consumer
#端口号
server.port=1000
#在注册中心中进行注册
eureka.client.serviceUrl.defaultZone=http://localhost:1000/eureka/
#启动服务发现的功能,开启了才能调用其它服务
spring.cloud.config.discovery.enabled=true
#发现的服务的名字--对应注测中心的服务名字
spring.cloud.config.discovery.serviceId=compute-server
@SpringBootApplication
@EnableEurekaServer
public class SpringcloudServerApplication {
public static void main(String[] args) {
SpringApplication.run(SpringcloudServerApplication.class, args);
}
}
如果注解没有补全,那就是 pom.xml 的 jar包没有下载完成
启动完成后在浏览器地址栏输入
http://localhost:1000/
出现如图所示即为成功
感谢各位憨憨