SpringBoot测试类用@Value获取server.port的值 发表于 2023-12-01 更新于 2024-09-30 分类于 Java 阅读次数: 评论数: 我使用的springboot版本:2.1.2.RELEASE,在测试类中,通过@Value获取server.port的值,得到值 -1。 解决方法,可以在测试类上面加上如下注解: 123@RunWith(SpringRunner.class)@SpringBootTest(classes = MyApplication.class, webEnvironment = SpringBootTest.WebEnvironment.DEFINED_PORT) 相关文章 SpringBoot中的同步和异步调用 本文作者: Simon 本文链接: finolo.gy/2023/12/SpringBoot测试类用-Value获取server-port的值/ 版权声明: 本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!