Home

0

Static Factory Method

Static Factory MethodWe have often used the constructor when You need to create the object. because This function is basically offered a lot of the programming languages like Java, C++, JS, python and

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