All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.seasar.doma.boot.sample.MessageHandler Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
package org.seasar.doma.boot.sample;

import java.time.LocalDate;

import org.seasar.doma.boot.event.annotation.HandlePreInsert;
import org.springframework.stereotype.Component;

@Component
public class MessageHandler {
	@HandlePreInsert
	public void preInsert(Message message) {
		message.createdAt = LocalDate.now();
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy