package com.example.mylibrary;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Component;
@Component
public class MyService {
\t
\t@Autowired
\tprivate MyRepository myRepository;
\t
\tpublic String getContent() {
\t\treturn myRepository.getContent();
\t}
}