# Events in spring v2

DevFeed: [Events in spring v2](<https://devfeed.tech/articles/events-in-spring-v2-27282.md>)

Original publisher: [Read original article](<https://blog.pchudzik.com/201709/spring-events-more/>)

Published: 2017-09-29T00:00:00Z

Content type: tutorial

Language: en

Sources: [Paweł Chudzik](<https://devfeed.tech/sources/pawe-chudzik.md>)

Topics: [async](<https://devfeed.tech/topics/async.md>), [Exception](<https://devfeed.tech/topics/exception.md>), [mvc](<https://devfeed.tech/topics/mvc.md>)

Tags: [asynchronous](<https://devfeed.tech/tags/asynchronous.md>), [errors](<https://devfeed.tech/tags/errors.md>), [event](<https://devfeed.tech/tags/event.md>), [exceptions](<https://devfeed.tech/tags/exceptions.md>), [handler](<https://devfeed.tech/tags/handler.md>), [mvc](<https://devfeed.tech/tags/mvc.md>), [spring](<https://devfeed.tech/tags/spring.md>)

## AI overview

This tutorial explains advanced event handling in Spring applications, including ordered handlers, asynchronous processing, and exception handling. It describes using @Order, @Async, custom executors, and custom error handlers, and notes that exceptions can stop further event propagation by default.

## Source excerpt

Last time I wrote about events in a spring based application I've introduced some basics on how events can be dispatched using spring infrastructure. In this post, I'm going to dig deeper into an order of handlers, exceptions and asynchronous events handlers. Read more