|
|
|
@ -5,6 +5,7 @@ import org.springframework.context.annotation.Configuration;
|
|
|
|
|
import org.springframework.web.servlet.config.annotation.InterceptorRegistry;
|
|
|
|
|
|
|
|
|
|
import cokr.xit.base.file.web.DownloadView;
|
|
|
|
|
import cokr.xit.base.file.web.XLSView;
|
|
|
|
|
import cokr.xit.base.menu.web.MenuInjector;
|
|
|
|
|
import cokr.xit.foundation.boot.MvcConfig;
|
|
|
|
|
|
|
|
|
@ -36,4 +37,12 @@ public class MvcConfig2 extends MvcConfig {
|
|
|
|
|
public DownloadView downloadView() {
|
|
|
|
|
return new DownloadView();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**XLSView를 반환한다.
|
|
|
|
|
* @return XLSView
|
|
|
|
|
*/
|
|
|
|
|
@Bean
|
|
|
|
|
public XLSView xlsView() {
|
|
|
|
|
return new XLSView();
|
|
|
|
|
}
|
|
|
|
|
}
|