Fixed history problem, and improve mock services frontend

This commit is contained in:
2023-05-25 14:49:16 +02:00
parent 8815f657e0
commit b733e1e344
4 changed files with 62 additions and 97 deletions

View File

@@ -25,11 +25,11 @@ import java.util.Map;
@AllArgsConstructor
@RedisHash("mockHistory")
public class RequestHistory implements Comparable<RequestHistory>, Serializable {
@Id
private String id;
@DateTimeFormat(pattern = "yyyy-MM-ddTHH:mm:ss")
private LocalDateTime dateTimeStamp;
@Indexed
@Id
private String clientUUID;
private Map<String,String> headers;
private HttpMethod httpMethod;