Building Jpa with Querydsl
Gradle 프로젝트 기준으로 JPA에 QueryDSL을 연동하는 방법을 알아본다. build.gradleQueryDSL은 QClass라는 객체를 자동으로 생성하고 이를 기반으로 타입 세이프한 쿼리를 작성할 수 있도록 돕는다. 이 QClass 객체들이 생성이 될 수 있도록 아래처럼 플러그인을 추가해줘야한다. 123456789plugins {
Gradle 프로젝트 기준으로 JPA에 QueryDSL을 연동하는 방법을 알아본다. build.gradleQueryDSL은 QClass라는 객체를 자동으로 생성하고 이를 기반으로 타입 세이프한 쿼리를 작성할 수 있도록 돕는다. 이 QClass 객체들이 생성이 될 수 있도록 아래처럼 플러그인을 추가해줘야한다. 123456789plugins {
Creating new instanceCreating new instance using Reflection technique means You would call the contructor of the class.First of all, you gotta set the parameters for the constructor. Create Class<?
Creating the directory.let’s create the directory which is used the root directory of your hexo project. Pulling your git repository.123> git init> git remote add origin [YOUR GIT REPOSITORY]>
telnet actually is operated on 23 port number. but if you just check the network status whether it’s opened or blocked, you can use telnet command. 1> telnet 180.70.98.168 6393 If it is opened, It
DependencyYou could refer ‘https://mvnrepository.com/artifact/net.rcarz/jira-client/0.5‘ site. 1compile group: 'net.rcarz', name: 'jira-client', version: '0.5' Usage of J
Dependency123compile group: 'org.apache.xmlbeans', name: 'xmlbeans', version: '3.1.0'compile group: 'org.apache.commons', name: 'commons-compress', ve
1. Static Factory MethodThe java language offer to us the constructor for creating new object. It’s simplest way to do that but It has a lot of limitation.So We would study the new way for creating ja
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
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