일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- springboot
- 통영여행
- 성신여대맛집
- JavaScript
- 꼴뚜기회
- 한성대맛집
- 공무원
- ELK
- 스페인여행
- npm
- 방이편백육분삼십성신여대
- 통영예쁜카페
- 자바스크립트에러처리
- 국가직
- 뚝섬역맛집
- tomcat7
- react
- 성북구맛집
- 통영
- 돈암동맛집
- ubuntu자바설치
- 서울숲누룽지통닭구이
- 파이썬
- 통영에어비앤비
- 한남동맛집
- 방이편백육분삼십
- 영화추천
- gradle
- 퇴사후공무원
- 성신여대편백집
- Today
- Total
목록Framework (24)
코린이의 기록
boot Run Error log 전체 로그는 더보기 클릭 더보기 ### Error querying database. Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Failed to obtain JDBC Connection; nested exception is com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure The last packet sent successfully to the server was 0 milliseconds ago. The driver has not received any packets from the server..
목차 Webflux 개념을 알기전에 Reactive Programming이란 무엇인가 살펴볼 필요가 있겠음. Reactive Programming ? 일반적으로 Reactive Programming(반응 형 프로그래밍)은 비동기(Asynchronous)식 및 이벤트 기반(event-driven)의 Non Blocking 응용 프로그램에 관한 것이다. Reactive application의 주요 측면은 Backpressure의 개념으로, 생산자(producer)가 소비자(consumer)를 압도하지 않도록하는 메커니즘이다. 예를 들어 HTTP 연결이 너무 느릴 때 데이터베이스에서 HTTP 응답으로 확장되는 반응 구성 요소의 파이프 라인에서 데이터 저장소는 네트워크 용량이 확보 될 때까지 속도가 느려지거나 ..
gradlew build시 다음과 같은 에러가 발생함. sudo 를 붙여서 build해보자 출처 : https://stackoverflow.com/questions/30840526/gradle-could-not-create-service-of-type-initscripthandler-using-buildscopeservic
[ERROR] -> [Help 1] [ERROR] [ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch. [ERROR] Re-run Maven using the -X switch to enable full debug logging. [ERROR] [ERROR] For more information about the errors and possible solutions, please read the following articles: [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/MojoFailureException 해결방법 1. Projec..
Angular JS Logout Login ng-if 값에 따라서 다른 링크를 연결한다. Angular로 작성된 코드를 React로 바꿔보면 React if(user.session) return React.createElement('a', {href: '/logout'}, 'Logout') else return React.createElement('a', {href: '/login'}, 'Login') React의 특징은 선언형 프로그래밍이다. 선언형 프로그래밍은 결괏값에 더 집중한 것이 명령형 프로그래밍과 대조적이다. 지역변수를 더 적게 사용하고 논리도 단순하게 표현할 수 있다. 기존에 jQuery를 사용할 때는 DOM을 조작하여 필요한 부분을 변경했다면, React는 내부적으로 가상 DOM을 사용하여..
Project 만들기 1. https://start.spring.io/ 2. 위 입력한 후 Generate Project 버튼 클릭한다. 3. STS에서 File ->Open Projects From File System 클릭 위에서 생성된 zip 파일은 unzip한후 디렉토리를 불러온다. 주의) 이 아래에 sub pakcage를 만들어야함! 스프링부트 프로젝트 구조 src/main/java : 자바 Source 파일들 src/main/resources/application.properties : Spring boot property 값들을 모아 놓은 파일 src/main/resources/static : html, css 같은 정적 파일들 src/main/resources/templates : jsp,..
org.hibernate.event.internal.DefaultLoadEventListener - HHH000327: Error performing load command Service Implement 부분에서 SQL 실행하다가 발생한 오류 12345@SuppressWarnings("unchecked") public List findByDeviceId(String deviceId) { return super.entityManager.createQuery("select r from DeviceSwVersion r where r.deviceSwVersionPK.id = :id").setParameter("id", deviceId) .getResultList(); }Colored by Color Scrip..
spring boot Run 을 클릭하면 아래와 같이 Application Failed To start 에러가 발생한다. 소스 수정해서 웹에 반영하고 싶은데 해당 port가 listening 이라니.. 12345678910111213141516171819202122***************************APPLICATION FAILED TO START*************************** Description: The Tomcat connector configured to listen on port 8080 failed to start. The port may already be in use or the connector may be misconfigured. Action: Verif..