BAEL-1475: Reactive WebSockets with Spring 5

This commit is contained in:
felipeazv
2018-01-12 23:04:21 +01:00
parent afb2191c4c
commit b41ebab6b8
6 changed files with 280 additions and 0 deletions
@@ -0,0 +1,11 @@
package com.baeldung;
import lombok.AllArgsConstructor;
import lombok.Data;
@Data
@AllArgsConstructor
public class Event {
private String eventId;
private String eventDt;
}