Which two options will inject the value of the daily.limit system property? (Choose two.)

Which two options will inject the value of the daily.limit system property? (Choose two.)
A . @Value(“#{daily.limit}”)
B . @Value(“$(systemProperties.daily.limit)”)
C . @Value(“$(daily.limit)”)
D . @Value(“#{systemProperties[‘daily.limit’]}”)
E . @Value(“#{systemProperties.daily.limit}”)

Answer: CD

Explanation:

The @Value annotation can be used to inject values from external sources into fields, constructor parameters, or method parameters. To inject a system property, the annotation can use either the ${…} placeholder syntax or the #{…} SpEL expression syntax. The former is simpler and more concise, while the latter is more powerful and flexible. Both syntaxes can access the systemProperties map, which contains all the system properties as key-value pairs.

Reference:

https://docs.spring.io/spring-framework/docs/current/reference/html/core.html#beans-value-annotations :

https://docs.spring.io/spring-framework/docs/current/reference/html/core.html#expressions :

https://docs.spring.io/spring-framework/docs/current/reference/html/core.html#expressions-beandef-xml-based

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments