Java(129)
-
java 에러
no main manifest attribute, in xxx.jar java -jar xxx.jar 수행시, main 파일을 못 찾아서 문제 발생 https://dongjuppp.tistory.com/87 no main manifest attribute in 에러 no main manifest attribute in 에러는 spring 애플리케이션을 빌드한 결과물로 나온 jar파일에서 처음 호출할 Main 메소드를 찾지 못했다는 에러다. 주로 jar파일을 "java -jar app.jar" 명령어로 실행을 시킬.. dongjuppp.tistory.com org.apache.maven.plugins maven-jar-plugin 3.2.0 true xxx.xxx.xxx Error: Unable to in..
2021.12.26 -
크롤링(crawling)
정적파일 크롤링 jsoup html처럼 정적 파일만 가능 크롬의 F12를 통해서 나오는 내용 접근 불가능 json 접근 불가능 동적파일 크롤링 selenium 브라우져상의 동적 내용 접근 가능 크롬의 F12를 통해서 나오는 내용 접근 가능 json 크롤링 URL/BufferedReader/InputStreamReader
2021.12.26 -
Spring Boot 설치
STS 다운로드 : https://spring.io/tools Spring Tools 4 is the next generation of Spring tooling Largely rebuilt from scratch, Spring Tools 4 provides world-class support for developing Spring-based enterprise applications, whether you prefer Eclipse, Visual Studio Code, or Theia IDE. spring.io https://download.springsource.com/release/STS4/4.13.0.RELEASE/dist/e4.22/spring-tool-suite-4-4.13.0.RELEASE-..
2021.12.25 -
파일 UTF-8 셋팅
1. Window > Preferences > General > Content types Text Default encoding: UTF-8 2. Window > Preferences > General > Workspace Text file encoding Other: UTF-8
2021.09.12 -
Spring boot index.html 설정
http://localhost:8081로 접속시 index.html 화면이 나오도록 설정 @GetMapping("/") public String index() { return "forward:/index.html"; }
2021.04.05 -
Spring boot WebMvcConfigurer jsp 셋팅
'/WEB-INF/jsp/'에서 마지막에 '/'가 빠지면 인식 못함 import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.ViewResolverRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; @Configuration @ComponentScan public class WebConfig implements WebMvcConfigurer { @Override public void configureViewResolvers(ViewResolverRegis..
2021.04.05