package com.example.testsample; import org.springframework.stereotype.Service; @Service public class Sample1DomainService { public Sample1Entity findById(Long id) { return new Sample1Entity(id, "Taro", 2L); } }