-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ Add: Batch end-point, Hourly weather query
- Loading branch information
Showing
5 changed files
with
153 additions
and
135 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
src/main/kotlin/nexters/weski/batch/WeatherBatchController.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package nexters.weski.batch | ||
|
||
import org.springframework.web.bind.annotation.GetMapping | ||
import org.springframework.web.bind.annotation.RestController | ||
|
||
@RestController | ||
class WeatherBatchController( | ||
private val externalWeatherService: ExternalWeatherService | ||
) { | ||
|
||
@GetMapping("/batch/current-weather") | ||
fun scheduleWeatherUpdate() { | ||
externalWeatherService.updateCurrentWeather() | ||
} | ||
|
||
@GetMapping("/batch/weekly-weather") | ||
fun scheduledDailyWeatherUpdate() { | ||
externalWeatherService.updateDailyWeather() | ||
} | ||
|
||
@GetMapping("/batch/hourly-weather") | ||
fun scheduledHourlyAndDailyUpdate() { | ||
externalWeatherService.updateHourlyAndDailyWeather() | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters