ClockConfiguration.java
286 bytes
| 1 | package com.tasteprint.shared; |
|---|---|
| 2 | |
| 3 | import java.time.Clock; |
| 4 | |
| 5 | import org.springframework.context.annotation.Bean; |
| 6 | import org.springframework.context.annotation.Configuration; |
| 7 | |
| 8 | @Configuration |
| 9 | class ClockConfiguration { |
| 10 | |
| 11 | @Bean |
| 12 | Clock clock() { |
| 13 | return Clock.systemUTC(); |
| 14 | } |
| 15 | } |
| 16 | |