Thangtq211 e32c6e5f38 BAEL-635 Overview of Spring 5 (#1633)
* Overview of Spring 5

* Overview of Spring 5

* BAEL-635 Formatting
2017-04-11 15:27:30 +02:00

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);
}
}