我编写了以下内容以将对象缓存到类资源位置。
static private <T> void toSerializedCache(Class<T> cls, T t, String cachecrlstr) {
try {
URL crl = cls.getResource(cachecrlstr);
File crf = new File(crl.getFile());
JAXBContext jaxbContext = JAXBContext.newInstance(cls);
Marshaller jaxbMarshaller = jaxbContext.createMarshaller();
jaxbMarshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
jaxbMarshaller.marshal(t, crf);
}
catch (Exception e) {
System.out.printf("Failed to write %s to cache %s", t.getClass(), cachecrlstr);
}
}
问题是 cachecrlstr 是一个最初不存在的文件。该文件必须最初创建。
由于它最初不存在,因此类加载器会将 url 返回为 null 并且过程失败。
我不能使用绝对路径,因为此例程在 Web 服务上运行,我们需要从类加载器中推断出绝对路径。
为了解决这个问题,我将例程重写为
static private <T> void toSerializedCache(Class<T> cls, T t, String cachecrlstr) {
try {
File crf = new File(request.getSession().getServletContext().getRealPath("/WEB-INF/class"+cachecrlstr));
JAXBContext jaxbContext = JAXBContext.newInstance(cls);
Marshaller jaxbMarshaller = jaxbContext.createMarshaller();
jaxbMarshaller.setProperty(Marshaller.JAXB_FORMATTED_OUTPUT, true);
jaxbMarshaller.marshal(t, file);
}
catch (JAXBException e) {
System.out.printf("Failed to write %s to cache %s", t.getClass(), cachecrlstr);
}
}
但我无法获得 httpservletrequest 对象,因为此例程在 jax-rs 服务实现中。而且我不愿意编写一个http监听器(那些在web.xml中注册的)来将请求存储到Threadlocal映射中。(意思是,不想搞砸维护 Threadlocal 对象)。
但是,(虽然不愿意给它写信)我愿意从 Threadlocal 中撤回对象。
有谁知道 RestEasy 是否在 Threadlocal 中存储了我可以撤回以推断会话上下文或请求的任何 http 对象?
更重要的问题是 - 你建议我做什么来将对象写入文件,文件路径相对于WEB-INF/class
,在我上面提到的约束下。