从实体访问存储库或服务

时间:2016-07-26 14:58:41

标签: java spring spring-boot

我正在使用Spring Boot编写服务器应用程序。

大多数时候,我在服务中编写所有业务逻辑,我使用@Autowired来访问存储库和其他服务。

但是,有时我想从@Entity类访问某些服务或属性,但不能使用@Autowired

例如,我有一个应该能够将自己序列化为JSON的实体。在JSON中,它应该有imageUrl字段,其中包含图像名称(存储在数据库中并作为@Entity类中的属性)和基本URL,它仅在application.properties中可用。这意味着我必须在@Value类中使用@Entity注释,但它不会那样工作。

所以我创建了一个看起来像这样的服务:

@Service
public class FilesService {

    private static FilesService instance;

    @PostConstruct
    public void init() {
        FilesService.instance = this;
    }

    public static FilesService getInstance() {
        return instance;
    }

    @Value("${files.path}")
    String filesPath;
    @Value("${files.url}")
    String filesUrl;

    public String saveFile(MultipartFile file) throws IOException {
        if (file == null || file.isEmpty()) {
            return null;
        }
        String filename = UUID.randomUUID().toString();
        file.transferTo(new File(filesPath + filename));
        return filename;
    }

    public String getFileUrl(String filename) {
        if (filename == null || filename.length() == 0) {
            return null;
        }
        return filesUrl + filename;
    }

}

然后在@Entity类内部编写以下代码:

@JsonProperty
public String getImageUrl() {
    return FilesService.getInstance().getFileUrl(imageName);
}

这样可行,但看起来不对。此外,我担心如果用于不那么琐碎的@Service类或@Repository类,这是否会导致一些副作用。

使用@Repository类或任何其他非@Service类(不是由Spring管理的类)的@Entity@Component类的正确方法是什么?

1 个答案:

答案 0 :(得分:3)

嗯,我说没有正确的方法可以使用来自实体的存储库和服务,因为我的每一根光纤都是错误的,但话虽如此,你可以参考this link获取有关如何操作的建议。

在您的情况下,我认为它应该允许您填充实体中的@Value字段,这实际上更适合自动装配服务。