[spring]이미지 추출시 문제가 발생하는 경우 해결하는 방법 (jpeg2000 확장자가 문제가 될 수 있어요)
[이슈] pdf 파일을 업로드하여 이미지로 만들 때 문제가 발생하는 경우 [원인] pdf파일 생성시 첨부된 이미지들 중에 이미지 확장자가 JPG2000 인경우 이미지를 추출하지 못함 ...
[STS]maven build… 오류처리 (cannot nest inside to enable the nesting exclude…) : Boot Dashboard영역 local 프로젝트 나타나게 하는 방법
Git으로 부터 import project를 한 후 컴파일 오류가 발생하였고, 무엇보다 큰 문제는 Spring Boot Dashboard 영역의 local 아래에 프로젝트가 잡히지 않아 서버를 시작할 수 없는...
[스프링부트] git에서 maven 프로젝트 import 시 오류가 발생한 경우 체크리스트 및 해결방법
git에서 프로젝트 import 하였을 때 여러 설정을 변경해주는 작업이 필요하다. 만약 설정 관련한 변경사항을 제대로 적용했음에도 불구하고 예상치 못한 곳에 뜨는 빨간 줄이나 오류 메세지를...
[스프링부트]Failed to configure a DataSource: ‘url’ attribute is not specified and no embedded datasource could be configured 오류 해결방법
스프링부트 프로젝트 생성후 서버를 시작했을 때 오류가 발생되었다. 오류 원인은? Reason: Failed to determine a suitable driver class이다. Database에 연결할 때 필요한 정보가 없기 때문이다....
스프링 ViewResolver, ModelAndView에 알아보자.
자바 스프링 프레임웍의 ViewResolver와 ModelAndView에 대해 알아본다. ViewResolver Controller가 넘긴 view이름을 통해 해당 view를 찾는 역할을 하고 Spring 설정 파일에 등록한다. Controller는 ModelAndview 객체에 응달할...
스프링 부트 설치방법 및 Springboot개발 환경 설정 (이클립스 STS)
스프링 부트를 설치하면, 예전에 스프링 설치해서 환경 설정 하던 과정에서 발생하던 복잡한 일련의 작업을 한방에 끝낼 수 있다. 스프링 부트 설치 방법 1. Spring Initializr...
[Java] 문자열 비교 (String)
자바로 개발을 하다 보면 매우 많이 문자열을 비교하게 된다. 매번 조건문을 코딩하기 귀찮을 때가 많다. 그럴 때 편하게 사용할 수 있도록 유릴티리 클래스를 하나 생성...
오라클 사이트 Java sdk 다운로드 경로입니다.
오라클 사이트 Java sdk 다운로드 경로입니다. Java SE Development Kit 11 Downloads (Java Platform (JDK) 11) https://www.oracle.com/technetwork/java/javase/downloads/jdk11-downloads-5066655.html Java SE Development Kit 8 Downloads https://www.oracle.com/technetwork/java/javase/downloads/jdk8-downloads-2133151.html Java...
이클립스 maven 프로젝트 업데이트 오류 처리(Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.6)
프로젝트 import 후 메이븐 업데이트를 시도하였더니 오류가 발생되었다. 오류내용은 다음과 같다. Errors occurred during the build. Errors running builder ‘Maven Project Builder’ on project ‘Test’. Could not calculate build plan: Plugin org.apache.maven.plugins:maven-resources-plugin:2.6 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.6 Plugin org.apache.maven.plugins:maven-resources-plugin:2.6 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.6 Could not calculate build plan: Plugin org.apache.maven.plugins:maven-resources-plugin:2.6 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.6 Plugin org.apache.maven.plugins:maven-resources-plugin:2.6 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.6...
안드로이드(Android)(java) 현재 월의 시작일자 가져오는 방법
다음 예제코드는 시작일을 가져오는 코드입니다. 시작일은 무조건 1일 이니, 1로 세팅만 하면 됩니다. public static String getCurrentFirstDateOfMonth(){ Calendar cal = Calendar.getInstance(); cal.set(Calendar.DAY_OF_MONTH, 1); SimpleDateFormat sdf...