일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Spring
- Design Patterns
- IntelliJ
- ubuntu
- Oracle
- Gradle
- Spring Boot
- MySQL
- linux
- AWS
- jsp
- java
- php
- redis
- Git
- Spring Batch
- it
- devops
- db
- 맛집
- jenkins
- ReactJS
- javascript
- elasticsearch
- tool
- laravel
- 요리
- Web Server
- JVM
- springboot
- Today
- Total
목록전체 (810)
아무거나
*** 오류ERROR : Error Message: Type interface com.deploy.model.HistoryMapper is not known to the MapperRegistry.(.xml파일이 읽히지 않을때 -> 즉, 기본적으로 xml파일이 포함되지 않을 때)메이븐 사용시 pom.xml 내의아래 추가[코드내용] src/main/java **/*.xml
*** pom.xml에서 packaging에서 Execution default-testResources of goal ... 에러 날 경우[코드추가] org.apache.maven.plugins maven-resources-plugin 2.4.3
[WARNING] File encoding has not been set, using platform encoding MS949, i.e. build is platform dependent!pom.xml 설정utf-8utf-8
프로그램 : 푸시발송 서버(node)에서 레디스를 이용하는 부분스펙 : windows server 2012(aws), redis2.8.x, nodejs문제 : Redis config dir periodically modified to "/var/spool/cron" with "Failed opening .rdb for saving: Permission denied" error redis에서 퍼미션 관련 오류가 뜨는 경우가 있었다. ( redis.conf에서 dir : /var/spool/cron, dbfilename : root 로 변경되어 있었다. )그래서 CONFIG SET 명령어로 dir과 dbfilename을 디폴트값으로 변경해 주었다.그러나 하루가 지난다음에 위에 이슈대로 초기화되는 문제가 발생..
현상 : 원하는 경로에 특정 IP만 허용시킬려고 하는데 윗단에서 ELB가 돌고있어서 client IP를 가져오지 못하는 현상X-Forwarded-For ex) SetEnvIf X-Forwarded-For 52.79.85.217 allow_ip SetEnvIf X-Forwarded-For 61.38.173.92 allow_ip SetEnvIf X-Forwarded-For 221.154.188.23 allow_ip SetEnvIf X-Forwarded-For 221.154.188.23 allow_ip SetEnvIf X-Forwarded-For 183.102.146.235 allow_ip SetEnvIf X-Forwarded-For 119.197.117.214 allow_ip SetEnvIf X-Forwar..
$conn = new mysqli($db_system['host'], $db_system['id'], $db_system['pw'], $db_system['name']); $query = " SELECT * FROM .... ";$result = $conn->query($img_query); $insert_id = mysqli_insert_id($conn); 함수를 사용하면 된다.
- 엑셀 수식으로 쿼리문 생성 ex) " insert into {Table} set b_seq='"&A2&"', b_name='"&B2&"', b_phone='"&C2&"', b_bank_code='"&D2&"', b_bank_accountnumber='"&E2&"', b_bank_depositprice='"&F2&"', b_bank_date='"&G2&"', b_description='"&H2&"', b_naver_id='"&I2&"', b_kakao_id='"&J2&"', b_area_type='"&K2&"', b_area_lat='"&L2&"', b_area_lng='"&M2&"', b_link='"&N2&"', b_dealarticle_type='"&O2&"' ; " 위에 부분을 빈 셀에 채워서 ..
- curl 라이브러리 설치 (php5) - sudo apt-get install php-curl- sudo apt-get install php5-curl // curl 설치 old php
- apt-get install php5-gd // gd 라이브러리 설치 [ gd 란 ? ]boutell 씨(?) 가 만든 png, jpg, gif 등 을 다루는 c library 로, (아마도) 설치가 간편하고 크기가 작다는 이유로 널리 쓰이게 된 라이브러리. php extension 으로 wrapping 되면서 폭발적인 인기를 누리게 되었다고 생각됨. gif 의 압축 알고리즘인 lzw 의 라이센스 때문에 한동안 gd 에서 gif 를 다루지 못하기도 하였는데, 라이센스 기간의 만료로 gif 다루는 것에도 자유로워 졌음. 코드를 보면 animated gif 에도 대응하려 한 흔적이 있는데, 현재 가능하지는 않음. animated gif 를 읽으면 첫장만 읽힘. freetype 을 이용하여 글자도 찍을 수..