您好,登錄后才能下訂單哦!
這篇文章主要講解了“@Value取值為NULL怎么解決”,文中的講解內(nèi)容簡(jiǎn)單清晰,易于學(xué)習(xí)與理解,下面請(qǐng)大家跟著小編的思路慢慢深入,一起來(lái)研究和學(xué)習(xí)“@Value取值為NULL怎么解決”吧!
在spring mvc架構(gòu)中,如果希望在程序中直接使用properties中定義的配置值,通常使用一下方式來(lái)獲?。?/p>
@Value("${tag}") private String tagValue;
但是取值時(shí),有時(shí)這個(gè)tagvalue為NULL,可能原因有:
使用static或final修飾了tagValue,如下:
private static String tagValue; //錯(cuò)誤 private final String tagValue; //錯(cuò)誤
類沒有加上@Component(或者@service等)
@Component //遺漏 class TestValue{ @Value("${tag}") private String tagValue; }
類被new新建了實(shí)例,而沒有使用@Autowired
@Component class TestValue{ @Value("${tag}") private String tagValue; } class Test{ ... TestValue testValue = new TestValue() }
這個(gè)testValue中肯定是取不到值的,必須使用@Autowired:
class Test{ @AutoWired TestValue testValue }
有兩種方式:
@Value(“${}”)
用于獲取配置文件中的屬性值,通常用于獲取寫在application.properties中的內(nèi)容;
@Value(“#{}”)
其實(shí)是SpEL表達(dá)式的值,可以表示常量的值,或者獲取bean中的屬性
區(qū)別:
① ${ property : default_value }
//property對(duì)應(yīng)外部配置文件,default_value,就是前面的值為空時(shí)的默認(rèn)值。
② #{ obj.property? :default_value }
//SpEL表達(dá)式,obj代表對(duì)象
@Value("${inputDir}") private String inputDir;
但有時(shí)候@Value(“${}”)取值為NULL,可能是由下面幾個(gè)原因造成的:
1.類沒有交給spring管理,即沒有加上@Component等注解
@Service public class TestValue{ @Value("${inputDir}") private String inputDir; …… }
2.使用 static或final修飾成員變量
@Value("${inputDir}") private static String inputDir;//錯(cuò)誤,不能使用@Value給static成員變量賦值 @Value("${inputDir}") private final String inputDir;//錯(cuò)誤,不能使用@Value給final成員變量賦值
3.自己new了一個(gè)對(duì)象實(shí)例,而沒有使用@Autowired注解
class Test{ @AutoWired TestValue testValue //TestValue testValue = new TestValue()//錯(cuò)誤,自己new的對(duì)象不能通過@Value注解獲取配置值。 }
@RestController @RequestMapping("/login") @Component public class LoginController { @Value("#{1}") private int number; //獲取數(shù)字 1 @Value("#{'Spring Expression Language'}") //獲取字符串常量 private String str; @Value("#{dataSource.url}") //獲取bean的屬性,dataSource為spring管理的obj,不是配置文件中的配置項(xiàng) private String jdbcUrl; @Autowired private DataSourceTransactionManager transactionManager; @RequestMapping("login") public String login(String name,String password) throws FileNotFoundException{ System.out.println(number); System.out.println(str); System.out.println(jdbcUrl); return "login"; } }
運(yùn)行結(jié)果
感謝各位的閱讀,以上就是“@Value取值為NULL怎么解決”的內(nèi)容了,經(jīng)過本文的學(xué)習(xí)后,相信大家對(duì)@Value取值為NULL怎么解決這一問題有了更深刻的體會(huì),具體使用情況還需要大家實(shí)踐驗(yàn)證。這里是億速云,小編將為大家推送更多相關(guān)知識(shí)點(diǎn)的文章,歡迎關(guān)注!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。