view spring-boot-playground/src/main/java/de/comline/spring/controller/CustomLogicController.java @ 11:f3f9102ef7c0

Noch ein Test mit der in-memory Datenbank: diesmal wird ein Testdatensatz vorher rein geladen, der dann im Test geholt wird.
author Dirk Olmes <dirk.olmes@codedo.de>
date Thu, 13 Aug 2020 17:33:20 +0200
parents 60afb461bf6c
children
line wrap: on
line source

package de.comline.spring.controller;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import de.comline.spring.service.CustomLogicService;

@RestController
public class CustomLogicController {
	@Autowired
	private CustomLogicService service;
	
	@RequestMapping("/svc")
	public String getCustomLogic() {
		return service.doit();
	}
}