springboot
Posted argor
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot相关的知识,希望对你有一定的参考价值。
注解
- @SpringBootApplication
标注在类上,表示该类是“主配置类”,运行该类的main方法启动应用 - @RunWith(SpringRunner.class)
@SpringBootTest
使用 Spring 进行单元测试 - @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; }
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()); } }
读取配置文件,方法2:@Value("${ruoyi.port}") private Integer port;
springboot
以上是关于springboot的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot中表单提交报错“Content type ‘application/x-www-form-urlencoded;charset=UTF-8‘ not supported“(代码片段
Spring boot:thymeleaf 没有正确渲染片段