私の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() ;
}
}