Spring Roo 1.0.2でExcelファイルをビューとして出力しようとしています。これを行う最も簡単な方法は何ですか?(新しいマッピングなどを追加する必要がありますか?)現在、デフォルトのRooAjaxUrlBasedViewResolverを使用しています。
ありがとう
Spring Roo 1.0.2でExcelファイルをビューとして出力しようとしています。これを行う最も簡単な方法は何ですか?(新しいマッピングなどを追加する必要がありますか?)現在、デフォルトのRooAjaxUrlBasedViewResolverを使用しています。
ありがとう
これを行うための特定の「Roo」方法はないと思いますが、SpringMVCにはApachePOIを使用するAbstractExcelViewクラスがあり、問題は発生しません。これは、期待できる最善の方法だと思います。
まず、AbstractExcelViewを拡張し、buildExcelDocumentメソッドを実装するビュークラスを作成します。
import org.springframework.web.servlet.view.document.AbstractExcelView;
public class XlsView extends AbstractExcelView {
@Override
protected void buildExcelDocument(
Map<String, Object> model, HSSFWorkbook workbook,
HttpServletRequest request, HttpServletResponse response) throws Exception {
//Apache POI code to set up the HSSFWorkbook goes here
response.setHeader("Content-Disposition", "attachment; filename=\"file.xls\"");
}
}
次に、以下をwebmvc-config.xmlに追加します。位置は重要ではないと思いますが、TilesConfigurerがリストされているセクションの下にあります。
<bean id="excelViewResolver" class="org.springframework.web.servlet.view.XmlViewResolver">
<property name="order" value="1"/>
<property name="location" value="/WEB-INF/views/views-excel.xml"/>
</bean>
最後に、以下を含むviews-excel.xmlを作成します。
<beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-3.0.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">
<bean name="XlsView" class="com.your.package.XlsView"/>
</beans>