2022
02-28
02-28
springboot如何使用@Value获取配置文件的值
使用@Value获取配置文件的值1、创建配置文件(application.properties)spring.activemq.broker-url=tcp://localhost:61616spring.activemq.user=adminspring.activemq.password=adminspring.activemq.in-memory=truespring.activemq.pool.enabled=false2、创建测试类(MyController.java)packagecom.jeff.controller;importorg.springframework.beans.factory.annotation.Value;importorg.springframework.web.bind.annotatio...
继续阅读 >