Archive: 2020

0

Dockerfile

docker run oracle example1docker run -d -p 59160:22 -p 59161:1521 jaspeen/oracle-xe-11g DockerfileENTRYPOINTThis keyword is used to execute some scripts when you start docker container. That is this k

0

Summary Oracle Query Briefly

UNIONIt would resort when your select queries are merged. 1234567SELECT DCI_TKT_CAR, DCI_USE_YN, DCI_CLASS, DCI_CLASS_DESC FROM DOM_CLASS_INFO WHERE LENGTH(DCI_CLASS) = 1 AND DCI_TKT_CAR = 'LJ&#x

0

Jvm options

SETJvm argumentJvm arguments are begun with ‘-D’. 1java -jar -Dfoo heumsi-springboot.jar Application argumentApplication arguments are begun with ‘—‘. 1java -jar --bar heumsi-sprinboot.jar GETapplicat

0

CSS Transition attribute

1. the properties of the transition attribute.transitionwhenever you put down your cursor on this object, It would be larger 3 times than now. 1234567891011div.keyboard { width: 100px; -web

0

Swagger

Add Dependencies1234compile group: 'io.springfox', name: 'springfox-swagger2', version: '2.9.2'compile group: 'io.springfox', name: 'springfox-swagger-ui&#

0

Docker Commands

Dockerfile vs Image vs ContainerI thought that they are really different things before, but It’s not true. Actually they are like the concept of the program and process It’s the summaries about the do

0

The concepts of DTO

The concept of DTO and VO.A data transfer object’s purpose is to represent the data to be transferred to another process, e.g. from your backend to a web frontend. If the information you are transferr

0

The briefly summary of Rest Api types

GETIt’s just like the ‘SELECT’ query. when you need to get some data from server, then we use this type of api. Actually this is not the main topic of this article. so I will skip the detail of it. be

0

The sort of Spring Bean injections

@Autowired, @Resource, @Inject 어노테이션으로만 자동적으로 객체를 주입할 경우 컨테이너에서 주입할 대상이 여러 개여서 의존성을 주입하지 못하는 경우가 발생할 수 있다 @Primary, @Qualifer 로 같은 우선순위로 있는 클래스가 여러 개가 있을 시 그 중 가장 우선순위로 주입할 클래스 타입을 선택할 수 있다.