IIS HTTP / HTTPS 세션공유 HTTP / HTTPS 의 세션공유 ASP -> 세션속성 -> 보안 연결의 새 ID부분을 False로 변경한다. 2018. 11. 2. Spring Mysql Blob 저장 및 출력 Blob 저장 멀티파트폼을 통해서 파일을 받는다. 핵심javax.sql.rowset.serial.SerialBlob public String blobTest(@RequestParam("file") MultipartFile file) {Map param = new HashMap();//파일이름String fileName = file.getOriginalFilename();//byte[] bytes;try {bytes = file.getBytes();try {Blob blob = new javax.sql.rowset.serial.SerialBlob(bytes);logger.debug("length : "+blob.length());param.put("file", blob);param.put("file_nam.. 2018. 11. 2. Eclipse Console 로그출력 늘리기 Window -> Preference -> Run/Debug -> Console 창으로 이동한다.기본적인 버퍼사이즈는 80000로 잡혀있다. Limit를 해제하거나 자기가 원하는 버퍼사이즈를 조절해서 사용하면 된다. 2018. 11. 2. TINYBLOB, BLOB, MEDIUMBLOB and LONGBLOB 자료형 TINYBLOB, BLOB, MEDIUMBLOB and LONGBLOBA binary large object that can hold a variable amount of binary data. The sorting and comparison of the values for these objects is performed in case-sensitive manner.TINYBLOBA binary large object column with a maximum length of 255 (2^8 - 1) characters.BLOBA binary large object column with a maximum length of 65535 (2^16 - 1) characters.MEDIUMBLOBA binary .. 2018. 11. 2. HTML CSS PRINT영역 여러가지 테스트해봤는데해당 경우가 제일 잘작동 하였다.http://jsfiddle.net/destan/e9gjwodL/ --HTML Page 1/2 Page 2/2 CSS body { width: 100%; height: 100%; margin: 0; padding: 0; background-color: #FAFAFA; font: 12pt "Tahoma"; } * { box-sizing: border-box; -moz-box-sizing: border-box; } .page { width: 210mm; min-height: 297mm; padding: 20mm; margin: 10mm auto; border: 1px #D3D3D3 solid; border-radius: 5px; background: wh.. 2018. 11. 1. java.sql.SQLException: The server time zone value '´???¹?±¹ ???ؽ?' is unrecognized or represents more than one time zone. MYSQL 버전을 바꾼후 커넥터를 연결후 해당에러 발생 java.sql.SQLException: The server time zone value '´???¹?±¹ ???ؽ?' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support.Caused by: com.mysql.cj.exceptions.InvalidConnectionAttributeExce.. 2018. 10. 24. Unknown system variable 'query_cache_size' Unknown system variable 'query_cache_size' MYSQL 버전 변경으로 인한에러실데이터 서버의 데이터베이스 버전은 5.1.41버전이다. 하지만 테스트 서버의 데이터베이스 버전이 8.0.11버전으로 버전이 완전 다르다.mysql-connector-java-[버전명].jar 파일을 변경https://mvnrepository.com/artifact/mysql/mysql-connector-java/8.0.11 2018. 10. 24. CANVAS를 이용한 모바일에서 사인처리 CANVAS를 이용한 모바일에서 사인처리1. 참고가 되었던 유튜브https://www.youtube.com/watch?v=P6SLf6jmXS02. 캔버스에 관한 튜토리얼정보https://www.html5canvastutorials.com/3. 파일전송을위한 Blobhttps://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement/toBlobhttps://stackoverflow.com/questions/18253378/javascript-blob-upload-with-formdata --------------터치이벤트 다른걸로 처리가능한데 framework7에 있는 돔조작부분을 활용했다. ---- ---이것저것 짬뽕해서 기능구현쪽으로만 적용해놨는데실제.. 2018. 10. 24. Chr(30)의 사용 아스키 코드표에서 30의 경우 record separator로 사용된다.쉽게 생각하면 눈에 보이지 않는 문자라고 보면되겠다.Chr(30)http://www.asciitable.com/ 엑셀 출력을 작성할때00123123 의형태로 출력된다면00의 값이 사라지게된다. 그때 앞쪽에 레코드 세퍼레이터를 넣어서 사라지는걸 방지한다. 2018. 10. 10. 이전 1 ··· 15 16 17 18 19 20 21 ··· 37 다음