Mercurial > hg > SpringPlayground
view spring-boot-playground/src/main/java/de/comline/spring/model/json/Greeting.java @ 2:856e646efa17
Weg von der one-size-fits-all @EnableAutoConfiugration hin zu einer bewussten Auswahl von auto config Klassen
author | Dirk Olmes <dirk.olmes@codedo.de> |
---|---|
date | Thu, 13 Aug 2020 14:16:13 +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; } }