ActionScript3as3, actionscript3shBrushAS3.jsBash/shellbash, shellshBrushBash.jsColdFusioncf, coldfusionshBrushColdFusion.jsC#c-sharp, csharpshBrushCSharp.jsC++cpp, cshBrushCpp.jsCSScssshBrushCss.jsDelphidelphi, pas, pascalshBrushDelphi.jsDiffdiff, patchshBrushDiff.jsErlangerl, erlangshBrushErlang.jsGroovygroovyshBrushGroovy.jsJavaScriptjs, jscript, javascriptshBrushJScript.jsJavajavashBrushJava...
라인이 많지 않은 엑셀의 경우 어느 브라우저에서든 정상적으로 다운로드가 되지만.. 어느 기준 이상으로 넘어가면 크롬에서는 네트워크 오류가 발생하는 것을 확인.. ( 정확한 원인은 확인 못함.. ) 그래서 구글링을 해본결과.. 동일한 현상의 글을 확인할 수 있었음.. https://github.com/rainabba/jquery-table2excel/issues/51 결국 아래 소스를 참고하여 해결할 수 있었음.. var contentType = "application/vnd.ms-excel"; var byteCharacters = e.format(fullTemplate, e.ctx); var byteNumbers = new Array(byteCharacters.length); for (var i = 0;..
@Bean public EmbeddedServletContainerFactory servletContainer() { TomcatEmbeddedServletContainerFactory tomcat = new TomcatEmbeddedServletContainerFactory() { @Override protected void postProcessContext(Context context) { SecurityConstraint securityConstraint = new SecurityConstraint(); securityConstraint.setUserConstraint("CONFIDENTIAL"); SecurityCollection collection = new SecurityCollection()..
lombok은 getter/setter를 자동으로 생성시켜주는 역활을 한다.사용자가 직접 생성시켜주지 않아도됨. lombok은 아래 주소에서 다운로드 받을 수 있다.https://projectlombok.org/downloadlombok.jar 파일을 다운로드 받은 후 더블 클릭을 하여 실행시킨다. 그러면 아래와 같은 설치 프로그램이 실행된다. [Specify location] 버튼을 클릭한 후 이클립스 실행파일을 선택해준 후 [Install / Update] 버튼을 클릭하여 설치를 진행한다. 설치 완료 후 아래와 같이 설치성공 화면이 표시된다. 이후 lombok을 사용하기 위해서는 Dependency를 추가해줘야 한다.다음과 같이 추가해준다. (Gradle 기준..) compile group: 'org..