package com.example.testsample; import org.springframework.stereotype.Service; @Service public class Sample2DomainService { public Sample2Entity findById(Long id) { return new Sample2Entity(id, "Apple"); } }