@Async
to Async
.@Autowired
to javax.inject.Inject.@Bean
to Bean
.@Component
to Bean
with a DefaultScope
of Singleton
.@Configuration
to Factory
.@EventListener
to EventListener
.@Lazy(false)
become a Context
scoped bean.@Primary
to Primary
.Requires
.@Qualifier
to javax.inject.Named.@Repository
the same was as ComponentAnnotationMapper
.@Scheduled
to Scheduled
.@Service
the same was as ComponentAnnotationMapper
.Configuration
in Spring.SpringConfigurationAdvice
.@Transactional
to io.micronaut.spring.tx.annotation.Transactional
.@Validated
to Validated
.@Value
to Value
.