|
1 | 1 | package com.bookstore;
|
2 | 2 |
|
3 |
| -import com.bookstore.auditor.AuditorAwareImpl; |
4 | 3 | import com.bookstore.service.BookstoreService;
|
5 |
| -import org.springframework.boot.ApplicationRunner; |
| 4 | +import org.slf4j.Logger; |
| 5 | +import org.slf4j.LoggerFactory; |
| 6 | +import org.springframework.boot.CommandLineRunner; |
6 | 7 | import org.springframework.boot.SpringApplication;
|
7 | 8 | import org.springframework.boot.autoconfigure.SpringBootApplication;
|
8 | 9 | import org.springframework.context.annotation.Bean;
|
9 |
| -import org.springframework.data.domain.AuditorAware; |
10 | 10 | import org.springframework.data.jpa.repository.config.EnableJpaAuditing;
|
11 | 11 |
|
12 | 12 | @SpringBootApplication
|
13 | 13 | @EnableJpaAuditing(auditorAwareRef = "auditorAware")
|
14 | 14 | public class MainApplication {
|
15 |
| - |
16 |
| - private final BookstoreService bookstoreService; |
17 | 15 |
|
18 |
| - public MainApplication(BookstoreService bookstoreService) { |
19 |
| - this.bookstoreService = bookstoreService; |
20 |
| - } |
21 |
| - |
22 |
| - public static void main(String[] args) { |
23 |
| - SpringApplication.run(MainApplication.class, args); |
24 |
| - } |
| 16 | + private static final Logger logger = LoggerFactory.getLogger(MainApplication.class); |
25 | 17 |
|
26 |
| - @Bean |
27 |
| - public AuditorAware<String> auditorAware() { |
28 |
| - return new AuditorAwareImpl(); |
| 18 | + public static void main(String... args) throws Exception { |
| 19 | + var ctx = SpringApplication.run(MainApplication.class, args); |
| 20 | + |
| 21 | + logger.info("Started ..."); |
| 22 | + System.in.read(); |
| 23 | + ctx.close(); |
29 | 24 | }
|
30 | 25 |
|
31 | 26 | @Bean
|
32 |
| - public ApplicationRunner init() { |
| 27 | + public CommandLineRunner scheduleRunner(BookstoreService bookstoreService) { |
33 | 28 | return args -> {
|
34 | 29 | System.out.println("Register new author ...");
|
35 | 30 | bookstoreService.registerAuthor();
|
36 | 31 |
|
37 | 32 | Thread.sleep(5000);
|
38 |
| - |
| 33 | + |
39 | 34 | System.out.println("Update an author ...");
|
40 |
| - bookstoreService.updateAuthor(); |
41 |
| - |
| 35 | + bookstoreService.updateAuthor(); |
| 36 | + |
42 | 37 | Thread.sleep(5000);
|
43 | 38 | System.out.println("Update books of an author ...");
|
44 |
| - bookstoreService.updateBooks(); |
| 39 | + bookstoreService.updateBooks(); |
45 | 40 | };
|
46 | 41 | }
|
47 | 42 | }
|
0 commit comments