springboot

Posted argor

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot相关的知识,希望对你有一定的参考价值。

 

注解


 

  1. @SpringBootApplication
    标注在类上,表示该类是“主配置类”,运行该类的main方法启动应用

  2. @RunWith(SpringRunner.class)
    @SpringBootTest
    使用 Spring 进行单元测试

  3. @ConfigurationProperties
    获取配置文件值
    技术图片
    package com.ruoyi;
    
    import org.springframework.boot.context.properties.ConfigurationProperties;
    import org.springframework.stereotype.Component;
    
    import lombok.Data;
    
    @Component
    @ConfigurationProperties(prefix = "ruoyi")
    @Data
    public class ProDemo {
    
        private String profile;
    }
    View Code
    技术图片
    package com.ruoyi;
    
    import org.junit.Test;
    import org.junit.runner.RunWith;
    import org.springframework.beans.factory.annotation.Autowired;
    import org.springframework.boot.test.context.SpringBootTest;
    import org.springframework.test.context.junit4.SpringRunner;
    
    @RunWith(SpringRunner.class)
    @SpringBootTest
    public class TestBoot {
        
        @Autowired
        private ProDemo pro;
    
        @Test
        public void doTest() {
            System.err.println("xxx" + pro.getProfile());
        }
    }
    View Code

     
    读取配置文件,方法2:

    技术图片
        @Value("${ruoyi.port}")
        private Integer port;
    View Code

     

 

 

 

 

 

 

springboot

以上是关于springboot的主要内容,如果未能解决你的问题,请参考以下文章

SpringBoot中表单提交报错“Content type ‘application/x-www-form-urlencoded;charset=UTF-8‘ not supported“(代码片段

Spring boot:thymeleaf 没有正确渲染片段

11SpringBoot-CRUD-thymeleaf公共页面元素抽取

学习小片段——springboot 错误处理

springboot 底层点的知识

springboot 底层点的知识