Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How spring customizes @ Value to be resolved to

2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/03 Report--

In view of how spring customizes @ Value to be parsed, this article introduces the corresponding analysis and solution in detail, hoping to help more partners who want to solve this problem to find a simpler and easier way.

Spring customization lets @ Value resolve to

@ Value can assign values to fields

Background

@ Value is usually combined with @ PropertySource (value = "db.properties") to use read configuration injection parameters, so how can we assign values automatically if our values are other stores?

Realization principle

The implementation is very simple.

/ / automatically inject this object @ Autowired private Environment environment; @ PostConstruct public void init () {/ / get some objects MutablePropertySources propertySources = ((ConfigurableEnvironment) this.environment) .getPropertySources (); PropertySourceFactory factory = BeanUtils.instantiateClass (DefaultPropertySourceFactory.class); / / construct pathResource PathResource pathResource = new PathResource ("/ Users/xx/soft/sp.properties") Try {org.springframework.core.env.PropertySource sd = factory.createPropertySource ("sd", new EncodedResource (pathResource)); / / set the value propertySources.addFirst (sd);} catch (IOException e) {e.printStackTrace ();}}

Mainly get the PropertySource object through the code, and then get the environment object, and set the value.

Spring4 Custom @ Value function

The Spring version of 4.3.10.RELEASE used in this article

@ Value is very powerful in Spring, you can inject a configuration item, you can reference the Bean in the container (call its method), or you can do some simple operations

The following is a simple demo

Demonstrate the use of @ Value import org.springframework.stereotype.Service; / * Test Bean * / @ Service ("userService") public class UserService {public int count () {return 10;} public int max (int size) {int count = count (); return count > size? Count: size;}} import org.springframework.beans.factory.InitializingBean;import org.springframework.beans.factory.annotation.Value;import org.springframework.stereotype.Component;@Componentpublic class AppRunner implements InitializingBean {/ * refers to a configuration item * / @ Value ("${app.port}") private int port; / * calls a bean method of the container to get the value * / @ Value ("# {userService.count ()}") private int userCount / * call a bean method of the container, and pass in the value of a configuration item as the parameter * / @ Value ("# {userService.max (${app.size})}") private int max; / * simple operation * / @ Value ("# {${app.size})"

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report