전체 글(137)
-
형 변환 모음...
Dealing with nulls UtilFactory.convertNull Java - comparing strings Use == for primitive data types like int If (mystring == null) Use the equals() method to compare objects Use .equals for strings : if (a.equals(“cat”)) Java - Converting int to string String myString = Integer.toString(my int value) or String str = "" + i Java - Converting String to int int i = Integer.parseInt(str); or int i =..
2015.05.28 -
사용자 생성 및 권한
사용자 삭제 drop user 아이디 CASCADE; 사용자 생성 create user 아이디 identified by 비밀번호; 권한주기 grant connect,resource, DBA to 아이디; grant CREATE DATABASE LINK, CREATE PUBLIC DATABASE LINK, CREATE MATERIALIZED VIEW, CREATE PROCEDURE, CREATE PUBLIC SYNONYM, CREATE ROLE, CREATE SEQUENCE, CREATE SYNONYM, CREATE TABLE, CREATE TRIGGER, CREATE TYPE, CREATE VIEW to 아이디;
2015.05.26 -
@PropertySource를 이용하여 Property 등록
@PropertySource로 Property 파일을 Evnironment로 로딩을 합니다. 아래는 예제 Sample입니다. package com.intercast.schedule.dao; import javax.annotation.Resource; import org.springframework.context.MessageSource; import org.springframework.context.annotation.PropertySource; import org.springframework.core.env.Environment; import org.springframework.stereotype.Repository; @Repository("excelDao") @PropertySource("classp..
2015.05.19 -
Spring4 Scheduling - Application
이제 마지막으로 자바를 구동하는 Application 파일입니다. package com.intercast.schedule.stater; import org.springframework.context.annotation.AnnotationConfigApplicationContext; import com.intercast.config.AppConfig; public class Application { @SuppressWarnings("resource") public static void main(String[] args) { // TODO Auto-generated method stub new AnnotationConfigApplicationContext(AppConfig.class); } } Annotat..
2015.05.19 -
Spring4 Scheduling - Demon
실질적으로 Schedule를 설정하는 java 파일입니다. package com.intercast.schedule.service; import javax.annotation.Resource; import org.springframework.scheduling.annotation.Scheduled; public class Demon { @Resource(name="scheduleService") ScheduleService scheduleService; @Scheduled(cron="0/5 * * * * *") public void printHello() { scheduleService.insertUser(); } } 보시는 바와 같이 @Scheduled를 설정합니다. Scheduled 설정에 관하여서는 ..
2015.05.19 -
Spring4 Scheduling - Spring 설정
Spring 설정은 두가지만 설정하면 됩니다. Spring Scheduling 기본설정의 AppConfig.java와 Database 설정을 담당할 DatabaseConfig.java 입니다. AppConfig.java package com.intercast.config; import java.util.concurrent.Executor; import java.util.concurrent.Executors; import org.springframework.context.MessageSource; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.ComponentScan; impor..
2015.05.19