正如标题所说,该程序在部署在 tomcat 中时运行良好。但是,当部署在作为我们的生产服务器的 glassfish 中时,它会在这一行中引发空指针异常。
@Autowired
ServletContext context;
FileOutputStream fileOut = new FileOutputStream(new File(context.getRealPath("resources/"+filename)));
正如标题所说,该程序在部署在 tomcat 中时运行良好。但是,当部署在作为我们的生产服务器的 glassfish 中时,它会在这一行中引发空指针异常。
@Autowired
ServletContext context;
FileOutputStream fileOut = new FileOutputStream(new File(context.getRealPath("resources/"+filename)));