在我的 Spring web MVC 应用程序中,我计划在我的 jsp 视图上显示一些 JFree 图表,我不知道该怎么做,因为我的第一个想法对我不起作用,生成图像,然后检索它从文件夹中。
现在我想,控制器是否能够直接重新运行图像?假设这是我的服务接口:
public interface ReportingService {
Image getChart() ;
}
我可以做这样的事情吗?如何从我的 jsp 调用这个图像?
@Controller
public class ReportingController {
@Autowired
private ReportingService reportingService ;
@RequestMapping("/reports")
public Image handleReports(){
return reportingService.getChart() ;
}
}