This file contains hidden or 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
// Example controller | |
@Controller | |
@Validated | |
class DemoBeanController( | |
private val service: Service // Injected by Micronaut | |
) { | |
@Get("/{id}") | |
// Micronaut 1.3 supports coroutines, this also works in earlier versions. |