Mercurial > hg > SpringPlayground
view spring-boot-playground/src/main/java/de/comline/spring/service/CustomLogicService.java @ 1:60afb461bf6c
Import des Spring boot playground
author | Dirk Olmes <dirk.olmes@codedo.de> |
---|---|
date | Tue, 11 Aug 2020 16:08:16 +0200 |
parents | |
children |
line wrap: on
line source
package de.comline.spring.service; import org.springframework.stereotype.Service; @Service public class CustomLogicService { public String doit() { return "this is the custom logic"; } }