微服务项目实战笔记2

springboot讲很多配置文件进行了统一管理

springboot会自动在src/main/resources目录下找application.properties或者application.yml配置文件
注意
properties配置文件的优先级高于yml。在properties文件中配置了server.port = 8080,同时在yml中配置server.port: 8081,springboot将使用8080作为端口号。

入口类

入口类要放在包的最外层,一遍能够扫描到所有子包里的类

package com.springboot.demo;

import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;

@RunWith(SpringRunner.class)//参数化运行器,配合@Paramters使用junit的参数化功能。简单的junit测试不需要
@SpringBootTest
public class DemoApplicationTests {

    @Test
    public void contextLoads() {
        System.out.println("测试===================");
    }

}

POM文件

pom.xml文件只要是存放依赖信息
spring-boot-start-parent:是一个特殊的starter,用来提供相关的maven默认依赖,使用它之后,常用的包依赖可以省去version标签
spring-boot-start-web:只要将其加入项目的Maven依赖中,就获得了可执行的web应用,不需要做任何web配置,便能获得web服务
spring-boot-starter-test:测试相关
spring-boot-maven-plugin:maven插件,能够将sb应用打包为jar或者war

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值