view spring-boot-playground/src/main/java/de/comline/spring/service/CustomLogicService.java @ 16:4217059d40e8

Test zum Empfang einer ganzen JMS Message, nicht nur der Payload
author Dirk Olmes <dirk.olmes@codedo.de>
date Thu, 10 Sep 2020 09:32:21 +0200
parents 60afb461bf6c
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";
	}
}