相关文章推荐
刚毅的长颈鹿  ·  Spring 3.1 M2: ...·  1 周前    · 
温暖的海龟  ·  达梦spring-data-jdbc - ...·  2 天前    · 
爱运动的热带鱼  ·  Caused by: ...·  3 小时前    · 
温柔的红薯  ·  CAS Authentication :: ...·  3 小时前    · 
鬼畜的水煮肉  ·  Dolphinscheduler ...·  7 月前    · 
温柔的人字拖  ·  python 获取工作日 ...·  1 年前    · 
活泼的柚子  ·  报错fp = ...·  1 年前    · 

springboot全局变量 bean

Spring Boot 是一个弹性和快速的框架,它可以用于快速构建企业级应用程序。可以通过使用 @Configuration 注解的 Java 配置类或通过在 application.properties 文件中配置来创建全局变量。

如果要创建全局变量 Bean,可以使用 @Bean 注解,并在方法体内创建对象,然后通过 @Autowired 注解在需要使用该 Bean 的地方注入。

@Configuration public class Config {

@Bean public GlobalVariable globalVariable() { return new GlobalVariable();

@Autowired private GlobalVariable globalVariable;

// 在其他地方使用全局变量 globalVariable.getValue();

  •