일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- IntelliJ
- tool
- MySQL
- ubuntu
- ReactJS
- Web Server
- devops
- springboot
- Design Patterns
- Gradle
- it
- AWS
- java
- javascript
- laravel
- Git
- Spring Boot
- Oracle
- JVM
- jsp
- php
- 맛집
- db
- jenkins
- redis
- linux
- elasticsearch
- Spring Batch
- 요리
- Spring
- Today
- Total
목록전체 (810)
아무거나
[springboot] elasticsearch 5.x 사용(transportClient) elasticsearch는 자바로 개발되었다. 그래서 9300 포트는 자바 네이티브로 API개발이 가능하다. 자바 관점에서 API 분류 - 자바 네이티브 API - TransportClient, NodeClient - HTTP Rest API - restTemplate/Apache HttpClient와 같은 툴로 직접 연결, Jest **** 해당 내용은 NodeClient와 TransportClient로 개발이 쉽게 가능하다는 장점이 있다. 그러나 공식적으로 쓰지 않기를 권고 하고 있다. 기능이 추가되어 버전이 올라갈 때 모델이 바뀌고 있다는 점을 현재 강조하고 있으며, 9200포트를 이용하여 REST API로 ..
[JPQL 사용] Query annotation : Repository의 조회 메소드에 직접 실행될 쿼리를 작성 1. Controller.java List productLogs = productLogService.getProductLog(productLog, limit); 2. Service.java List getProductLog(ProductLog productLog, Integer limit); 3. ServiceImpl.java @Override public List getProductLog(ProductLog productLog, Integer limit) { return repository.sqlFindWmpVendorIdAndDataProviderProcessType(productLog.g..
intellij에서 cannot run program "git.exe" 이 발생하면 git과 연동을 해주면 된다. 해결방법은 아래와 같다. git이 설치가 되어있는 가정하에 settings > Version Control > Git > Path to Git executable 경로를 설치한 폴더 bin > git.exe를 선택 후 test 확인 후 적용
[springboot gradle 개발환경별 버저닝 빌드&배포] 개발환경 기준 : dev, stage, master(=live) 사용툴 : jenkins + s3 + codedeploy [빌드] 1. build.gradle에 저장될 jar이름 설정(안하면 jenkins item이름으로 기본정의됨) jar { archivesBaseName = "test" } 2. build 부분에서 Add build step -> Invoke Gradle script 선택 3. jekins item 설정에서 Build 부분에서 Use Gradle Wrapper 버튼 클릭하고 설정 - Make gradlew executable 체크 - Wrapper location: ${workspace} // ${workspace}는 ..
[h2 console 접속문제] 접속 url : http://localhost:8080/h2-console * 가장 처음 열었을때 기본값 jdbc:h2:~/test 으로 지정되는 경우에는 동작이 제대로 안하게 된다 아래 처럼 url값을 변경하자 - jdbc:h2:mem:testdb
[Lombok] IDE : Intellij 우리가 만약 다음 속성에 대해 get/set 을 구현한 자바빈을 만든다고 해보자. – Long id – String name – Integer age – boolean live – Date birthday * 자바빈(JavaBean)이란 - 데이터를 표현하는 것을 목적으로 하는 자바 클래스. - 컴포넌트와 비슷한 의미로도 사용된다. - JavaBean 규격서에 따라 작성된 자바 클래스 그럼 일반적으로 아래와 같이 만들어진다. [User.java] import java.util.Date; public class User { private Long id; private String name; private Integer age; private String login..
필수 - (https://git-scm.com/downloads) 에서 git을 다운받는다. git이 설치가 되어있는 가정하에 ide에서 settings > Version Control > Git > Path to Git executable 경로를 설치한 폴더 bin > git.exe를 선택 후 test 확인 후 적용
jdk를 변경해야되는 이슈가 생겨 다시 설치하고 스프링부트를 실행시켰는데 아래와 같은 오류가 발생하였다. 오류: 기본 클래스 ApiApplication을(를) 로드하는 중 LinkageError가 발생했습니다. java.lang.UnsupportedClassVersionError: ../ApiApplication has been compiled by a more recent version of the Java Runtime (class file version 54.0), this version of the Java Runtime only recognizes class file versions up to 53.0 그래서 상단의 File -> Project Structure 에서 jdk location을 다..
spring boot 프로젝트에서 oracle을 연동하려고 하는 도중에 ojdbc를 디펜던시하지 못하는 문제가 생겨서 아래 코드를 입력하였던 해결되었다. [해결코드] repositories { mavenCentral() maven { url "https://code.lds.org/nexus/content/groups/main-repo"} // 추가하기 } dependencies { // oracle compile 'com.oracle:ojdbc7:12.1.0.2' }
[build.gradle 간략 설명] 1. build.gradle 에 spring-boot plugin 사용을 위한 buildscript 설정을추가한다. buildscript { ext { springBootVersion = '1.5.9.RELEASE' } repositories { mavenCentral() } dependencies { classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}") classpath "io.spring.gradle:dependency-management-plugin:1.0.4.RELEASE" } } // buildscript 는 gradle 로 task 를 수행할 때에 사용되는 설..