概述
JFinal 預設使用 FreeMarker 作為 View,為了讓 eclipse jee 能正確辨識 html,所以預設為 以」.html」為 FreeMarker 檢視檔案的副檔名(原為」.ftl」)。
如果需要使用JSP 作為預設視圖需要在 configConstant(Constants me)方法中進行配置,請參閱以下配置:
public void configConstant(Constants me) { me.setDevMode( true); me.setViewType(ViewType.JSP);
}
}