Gradle + QueryDSL + Lombok 적용
Gradle 4.10.x으로 변경후 Lombok이 동작을 하지 않고, queryDSL도 클래스 파일 생성이 되지 않아 여러모로 찾아보고…
Read MoreGradle 4.10.x으로 변경후 Lombok이 동작을 하지 않고, queryDSL도 클래스 파일 생성이 되지 않아 여러모로 찾아보고…
Read Morepublic class HibernateBookStoreConfiguration { @Autowired private Environment env; @Bean public static PropertySourcesPlaceholderConfigurer propertySourcesPlaceholderConfigurer() { PropertySourcesPlaceholderConfigurer…
Read MoreHow to copy from ByteBuffer to String 1. Simple but not exactly right simply create…
Read More자바8의 localdatetime은 jpa-hibernate에서 자동변환이 적용되지 않는다. 따라서 convert를 별도로 구현하거나 Jsr310JpaConverters를 추가해야 한다. 1. converter구현…
Read Morehibernate jpa 를 사용할 때 table과 field값에 대한 naming convention을 지정할 수 있다. 자바객체와 DB에…
Read More@Configuration@EnableJpaRepositories( basePackages = “com.haii.hmt.component.business.entity.admin”, entityManagerFactoryRef = “adminEntityManager”, transactionManagerRef = “adminTransactionManager”)public class AdminDataConfig{ @Inject private AdminDatasourceProp…
Read Moreweb.xml과 같은 위치에 jboss-web.xml 파일을 만들고 내용은 아래와 같이 입력 <?xml version=”1.0″ encoding=”UTF-8″?> <jboss-web> <context-root></context-root>…
Read More<?xml version=”1.0″ encoding=”ISO-8859-1″?><!– Licensed to the Apache Software Foundation (ASF) under one or more contributor…
Read More1. Akka <dependency> <groupId>com.typesafe.akka</groupId> <artifactId>akka-actor_2.11</artifactId> <version>2.4.16</version> </dependency> 2. Akka Producer public class Producer implements IndirectActorProducer…
Read More#!/bin/bash APPS_HOME=${base_dir_to_be_installted}INSTALL_DIR=”$APPS_HOME/”`date +%Y%m%d-%H%M`SOURCE_HOME=`pwd` synchronized(){ echo -e “\n\n\n######################\nMake newest\n######################” set timeout 1 git reset –hard HEAD…
Read More