본문 바로가기

전체239

오라클 세션 관련 특정 조건으로 한방에 지우기 ... ALTER SYSTEM ENABLE RESTRICTED SESSION; begin for x in ( select Sid, Serial#, machine, program from v$session where machine 'MyDatabaseServerName' ) loop execute immediate 'Alter System Kill Session '''|| x.Sid || ',' || x.Serial# || ''' IMMEDIATE'; end loop; end;I skip killing sessions originating on the database server to avoid killing off Oracle's connections to itself. 출처.. 2016. 11. 2.
@Autowired vs @Resource (메소드에 한해서..) Use @Autowired or @Inject. This limitation is covered in the Spring reference documentation: Fine-tuning annotation-based autowiring with qualifiers:@Autowired applies to fields, constructors, and multi-argument methods, allowing for narrowing through qualifier annotations at the parameter level. By contrast, @Resource is supported only for fields and bean property setter methods with a single a.. 2016. 10. 27.
JavaConfig 예제 (dataSource) package com.terry.boardprj.common; import javax.sql.DataSource; import org.apache.commons.dbcp.BasicDataSource;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration; @Configurationpublic class BoardConfig {         @Bean(destroyMethod="close")    public DataSource dataSource(){        BasicDataSource dataSource = new BasicDataSource();    .. 2016. 10. 27.
@Autowired @Inject @Resource @Autowired, @Resource, @Inject의 차이 [출처] [Spring] @Autowired, @Resource, @Inject의 차이|작성자 심해펭귄이번에 소개하는 세가지 어노테이션 @Autowired, @Resource,@Inject은 모두 의존관계를 자동으로 연결해주는 기능을 가진 어노테이션입니다. 다만 조금씩의 차이가 있습니다. @Autowired @Inject@Resource 범용스프링 전용자바에서 지원 자바에서 지원 연결방식타입에 맞춰서 연결 타입에 맞춰서 연결 이름으로 연결 자세한 설명을 하자면, @Inject와 @Resource는 JSR에 실려있는 자바 기존의 어노테이션입니다. 반면 @Autowired의 경우에는 스프링에서 등장한 어노테이션입니다. 따라서 스프링 이외에서는 사.. 2016. 10. 27.