Mercurial > hg > SpringPlayground
view spring-boot-playground/src/main/java/de/comline/spring/model/json/Greeting.java @ 7:0c3494137a82
Starte eine H2 web console auf port 8081 fuer besseres DB debugging.
author | Dirk Olmes <dirk.olmes@codedo.de> |
---|---|
date | Thu, 13 Aug 2020 16:28:20 +0200 |
parents | 60afb461bf6c |
children |
line wrap: on
line source
package de.comline.spring.model.json; import com.fasterxml.jackson.annotation.JsonProperty; public class Greeting { @JsonProperty("msg") private String message; public Greeting(String message) { this.message = message; } public String getMessage() { return message; } }