编程语言
首页 > 编程语言> > java-执行ApplciationRunner仅在开发配置文件中运行

java-执行ApplciationRunner仅在开发配置文件中运行

作者:互联网

当应用程序仅在开发配置文件中启动时,如何创建虚拟数据?

我正在关注this article,以便在春季启动时使用配置文件.我需要在应用程序启动时创建虚拟数据,但只能在开发配置文件中.我该如何实现?

我的类实现了ApplicationRunner并重写了run方法来创建数据.我已尝试使用本文中的@Profile(“ dev”)批注,但是无论活动配置文件如何,都将创建数据.

@SpringBootApplication
public class DemoApplication implements ApplicationRunner {

    @Autowired
    private UserService userService; //handles user saving

    public static void main(String[] args) {
        SpringApplication.run(DemoApplication.class, args);
    }

    @Profile("dev")
    @Override
    public void run(ApplicationArguments arg0) throws Exception {
        User user = new User();
        user.setName("Dummy User");
        userService.save(user);
    }

}

在application.properties中,我有

spring.profiles.active=test

仅当活动概要文件是dev时才创建虚拟用户,但同时也在测试概要文件中创建它.

解决方法:

@Profile应该标有@Bean或@Component或其构造型(即@Serivce,@Controller,@Repository等)

只需将其更改为:

@SpringBootApplication
public class DemoApplication {

    @Autowired
    private UserService userService; //handles user saving


    @Profile("dev")
    @Bean
    public ApplicationRunner devApplicationRunner(){
        return arg->{
           User user = new User();
           user.setName("Dummy User");
           userService.save(user);
        };
    }

    public static void main(String[] args) {
        SpringApplication.run(DemoApplication.class, args);
    }
}

DEV ApplicationRunner的代码仅在启用DEV配置文件(例如通过application.properties)时运行:

spring.profiles.active=dev

标签:spring-boot,spring-profiles,spring,java
来源: https://codeday.me/bug/20191108/2007259.html