윈도우시스템에서도 웹에디터로 올린 이미지를 볼수있게 코드추가 및 MySql Closed방지

This commit is contained in:
kimilguk
2023-05-12 16:45:21 +09:00
parent dcbe48d308
commit 342b66cfca
4 changed files with 9 additions and 4 deletions

View File

@@ -150,7 +150,12 @@ public class AttachmentService extends AbstractService {
*/ */
@Transactional(readOnly = true) @Transactional(readOnly = true)
public AttachmentImageResponseDto loadImage(String imagename) { public AttachmentImageResponseDto loadImage(String imagename) {
return storageUtils.loadImage(imagename.replaceAll(EDITOR_FILE_SEPARATOR, FILE_SEPARATOR)); if(FILE_SEPARATOR.equals("\\")) {//윈도우기반 자바시스템일 때 하이픈 character to be escaped is missing 에러방지
imagename = imagename.replaceAll(EDITOR_FILE_SEPARATOR, "\\\\"); //getFileSystem().getPath에서 디스크의 경로를 사용할 때
} else { //리눅스 또는 맥 기반 자바시스템 경로일 때(아래)
imagename = imagename.replaceAll(EDITOR_FILE_SEPARATOR, FILE_SEPARATOR);
}
return storageUtils.loadImage(imagename);
} }
/** /**

View File

@@ -3,7 +3,7 @@ database:
spring: spring:
datasource: datasource:
url: ${database.url}?serverTimezone=Asia/Seoul url: ${database.url}?serverTimezone=Asia/Seoul&autoReconnect=true&validationQuery=select 1
username: msaportal username: msaportal
password: msaportal password: msaportal
driver-class-name: com.mysql.cj.jdbc.Driver driver-class-name: com.mysql.cj.jdbc.Driver

View File

@@ -3,7 +3,7 @@ database:
spring: spring:
datasource: datasource:
url: ${database.url}?serverTimezone=Asia/Seoul url: ${database.url}?serverTimezone=Asia/Seoul&autoReconnect=true&validationQuery=select 1
username: msaportal username: msaportal
password: msaportal password: msaportal
driver-class-name: com.mysql.cj.jdbc.Driver driver-class-name: com.mysql.cj.jdbc.Driver

View File

@@ -3,7 +3,7 @@ database:
spring: spring:
datasource: datasource:
url: ${database.url}?serverTimezone=Asia/Seoul url: ${database.url}?serverTimezone=Asia/Seoul&autoReconnect=true&validationQuery=select 1
username: msaportal username: msaportal
password: msaportal password: msaportal
driver-class-name: com.mysql.cj.jdbc.Driver driver-class-name: com.mysql.cj.jdbc.Driver