21 lines
537 B
Java
21 lines
537 B
Java
package com.baeldung.jupiter;
|
|
|
|
import com.baeldung.web.reactive.Task;
|
|
import org.springframework.context.annotation.Bean;
|
|
import org.springframework.context.annotation.Configuration;
|
|
import org.springframework.context.support.PropertySourcesPlaceholderConfigurer;
|
|
|
|
@Configuration
|
|
public class TestConfig {
|
|
|
|
@Bean
|
|
static PropertySourcesPlaceholderConfigurer placeholderConfigurer() {
|
|
return new PropertySourcesPlaceholderConfigurer();
|
|
}
|
|
|
|
@Bean
|
|
Task taskName() {
|
|
return new Task("taskName", 1);
|
|
}
|
|
}
|