@Service public class ProductServiceImpl implements ProductService { @Autowired ProductMapper productMapper; @Override public ProductOutput getProductById(int id) { ProductEntity productEntity = new ProductEntity(); productEntity.setId(1); productEntity.setProductName("Test Ürün"); return productMapper.mapProductEntity2Output(productEntity); } }