我是Spring的新手。有一种情况我编写了一个实现AutoCloseable接口的Class。现在我想将它用作依赖注入。
我担心的是,如果我使用@Autowired并且稍后在函数中使用它会在结束范围或任何异常后Spring自动关闭资源对象吗?
@RestController
@RequestMapping("/rest/profile")
public class ProfileController {
private Daws haws;
@Autowired
public ProfileController(Daws haws) {
this.haws = haws;
}
@RequestMapping(value = "/images/{userId}/{fileName:.+}", method = RequestMethod.GET)
public void image(@PathVariable Integer userId, @PathVariable String publicUrl, @PathVariable String fileName, HttpServletRequest request, HttpServletResponse response) throws Exception {
try{
S3Object image = haws.getProfileImage(userId, fileName, request);
response.setContentType(image.getObjectMetadata().getContentType());
response.setHeader("ETag",image.getObjectMetadata().getETag());
response.setHeader("Cache-Control",image.getObjectMetadata().getCacheControl());
response.setHeader("Last-Modified",image.getObjectMetadata().getLastModified().toString());
IOUtils.copy(image.getObjectContent(), response.getOutputStream());
}catch (Exception e) {
if(e instanceof AmazonS3Exception){
//....
//....
response.setStatus(statusCode);
}
}
}
//Daws class
public class Daws implements AutoCloseable{
public S3Object getProfileImage(int userId, String fileName, HttpServletRequest request) throws IOException, ParseException, AmazonS3Exception{
S3Object image = ....;
return image;
}
@Override
public void close() throws Exception {
// TODO Auto-generated method stub
}
}
我现在这样做。请告诉我它没事或资源泄漏。如果是的话我该怎么办?
答案 0 :(得分:2)
对于Spring托管bean,您可以实现DisposableBean接口或使用@PreDestroy注释。当应用程序上下文被销毁时,Spring将调用destroy方法。
如果需要在每个方法调用上创建和关闭对象,则应使用try-with-resources
答案 1 :(得分:0)
如果您不使用try-with-resources
或明确调用close()
void close() 抛出异常 关闭此资源,放弃任何底层资源。在try-with-resources语句管理的对象上自动调用此方法。
来自javadoc