Created
May 18, 2017 14:37
-
-
Save pcan/3b395ea6f125b3ce4fb29dc7833e65aa to your computer and use it in GitHub Desktop.
Spring 4.2 TransactionalEventListener Test
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
/* | |
* **** CREDITS TO: https://github.com/olivergierke/spring-examples ***** | |
* | |
* Copyright 2015 the original author or authors. | |
* | |
* Licensed under the Apache License, Version 2.0 (the "License"); | |
* you may not use this file except in compliance with the License. | |
* You may obtain a copy of the License at | |
* | |
* http://www.apache.org/licenses/LICENSE-2.0 | |
* | |
* Unless required by applicable law or agreed to in writing, software | |
* distributed under the License is distributed on an "AS IS" BASIS, | |
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
* See the License for the specific language governing permissions and | |
* limitations under the License. | |
*/ | |
package example.events; | |
import lombok.NonNull; | |
import lombok.RequiredArgsConstructor; | |
import lombok.Value; | |
import lombok.extern.slf4j.Slf4j; | |
import java.util.UUID; | |
import org.springframework.beans.factory.annotation.Autowired; | |
import org.springframework.boot.autoconfigure.SpringBootApplication; | |
import org.springframework.context.ApplicationEvent; | |
import org.springframework.context.ApplicationEventPublisher; | |
import org.springframework.context.ApplicationListener; | |
import org.springframework.context.event.EventListener; | |
import org.springframework.core.ResolvableType; | |
import org.springframework.core.ResolvableTypeProvider; | |
import org.springframework.stereotype.Component; | |
import org.springframework.transaction.annotation.Transactional; | |
import org.springframework.transaction.event.TransactionPhase; | |
import org.springframework.transaction.event.TransactionalEventListener; | |
/** | |
* Simple example class to showcase Spring 4.2 transactional events. | |
* | |
* @author Oliver Gierke | |
* @soundtrack The Intersphere - Prodigy Composers (Live at Alte Feuerwache Mannheim) | |
*/ | |
@Slf4j | |
@SpringBootApplication | |
class EventsSample { | |
/** | |
* The event. | |
*/ | |
@Value | |
static class Event { | |
private final Object payload = UUID.randomUUID(); | |
} | |
/** | |
* The producer. | |
*/ | |
@Component | |
@RequiredArgsConstructor(onConstructor = @__(@Autowired) ) | |
static class EventProducer { | |
private final @NonNull ApplicationEventPublisher publisher; | |
@Transactional | |
public void publishEvent() { | |
publisher.publishEvent(new Event()); | |
} | |
@Transactional(rollbackFor = RuntimeException.class) | |
public void publishEventWithException() { | |
publisher.publishEvent(new Event()); | |
throw new RuntimeException(); | |
} | |
public void publishGenericEvent() { | |
publisher.publishEvent(new EventWithPayload<Payload>(new Payload())); | |
} | |
} | |
/** | |
* The listeners. | |
* | |
* @author Oliver Gierke | |
*/ | |
@Component | |
static class EventListeners { | |
@EventListener | |
public void onMulticast(Event event) { | |
log.info("Received event on multicast: {}", event.getPayload()); | |
} | |
@TransactionalEventListener(phase = TransactionPhase.BEFORE_COMMIT) | |
public void beforeCommit(Event event) { | |
log.info("Received event before commit: {}", event.getPayload()); | |
} | |
@TransactionalEventListener | |
public void afterCommit(Event event) { | |
log.info("Received event after commit: {}", event.getPayload()); | |
} | |
@TransactionalEventListener(phase = TransactionPhase.AFTER_ROLLBACK) | |
public void afterRollback(Event event) { | |
log.info("Received event afterRollback: {}", event.getPayload()); | |
} | |
@TransactionalEventListener(phase = TransactionPhase.AFTER_COMPLETION) | |
public void afterCompletion(Event event) { | |
log.info("Received event after completion: {}", event.getPayload()); | |
} | |
} | |
// Generic application events | |
@SuppressWarnings("serial") | |
static class EventWithPayload<T> extends ApplicationEvent implements ResolvableTypeProvider { | |
public EventWithPayload(T payload) { | |
super(payload); | |
} | |
/* | |
* (non-Javadoc) | |
* @see org.springframework.core.ResolvableTypeProvider#getResolvableType() | |
*/ | |
@Override | |
public ResolvableType getResolvableType() { | |
return ResolvableType.forClassWithGenerics(getClass(), ResolvableType.forInstance(source)); | |
} | |
} | |
static class Payload {} | |
@Component | |
static class Listener implements ApplicationListener<EventWithPayload<Payload>> { | |
/* | |
* (non-Javadoc) | |
* @see org.springframework.context.ApplicationListener#onApplicationEvent(org.springframework.context.ApplicationEvent) | |
*/ | |
@Override | |
public void onApplicationEvent(EventWithPayload<Payload> event) { | |
log.info("Received generic application event!"); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment