7월, 2017의 게시물 표시

CGLib & context infomation

http://javacan.tistory.com/104 context info http://www.mungchung.com/xe/spring/21220 http://toby.epril.com/?p=934 http://bumsgy-innori.tistory.com/205

AOP 트랜잭션

트랜잭션 방법: 1) AOP (선언적 트랜잭션 2) 프로그램에 의한 트랜잭션 AOP 를 이용한 선언적 트랜잭션 방식 context-datasource.xml ex) <?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans"     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"     xmlns:aop="http://www.springframework.org/schema/aop"     xmlns:tx="http://www.springframework.org/schema/tx"     xsi:schemaLocation="     http://www.springframework.org/schema/beans     http://www.springframework.org/schema/beans/spring-beans.xsd     http://www.springframework.org/schema/aop     http://www.springframework.org/schema/aop/spring-aop.xsd     http://www.springframework.org/schema/tx     http://www.springframework.org/schema/tx/spring-tx.xsd     "> <bean id="jdbcProp" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer"> <property name="location" v...

Hibernate Validation

@AssetFalse: false    인 경우 성립 @AsserTrue : true  인 경우 성립 @DecimalMax(value=) : 지정딘 값 이하의 실수인 경우 성립 @DecimalMin(value=) : 지정된 값 이상의 실수인 경우 성립 @Future :  대상 ㄴ날짜가 현재보다 미래인 경우 성립 @Past: 대상 날짜가 현재보다 과거의 경우 성립 @Max(value) : 지정된 값보다 작을 경우 성립 @Min(value) : 지정된 값보다 작을 경우 성립 @NotNull: 값이 null 이 아닌 경우 성립 @Null : 값이 null인 경우 성립 @Size(min=,max=) : 문자열, 배열이 지정된 값 사이인 경우 성립 @NotEmpty: 빈 값이 아닌 경우 성립 http://docs.jboss.org/hibernate/validator/5.1/reference/en-US/html/chapter-bean-constraints.html

Spring framework 3 xml files to java files

ServletContextXml.java package com.test.settings; import java.io.IOException; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.ComponentScan; import org.springframework.context.annotation.Configuration; import org.springframework.web.servlet.config.annotation.EnableWebMvc; import org.springframework.web.servlet.config.annotation.InterceptorRegistry; import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry; import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter; import org.springframework.web.servlet.mvc.WebContentInterceptor; import org.springframework.web.servlet.view.InternalResourceViewResolver; import org.springframework.web.servlet.view.JstlView; @Configuration @ComponentScan("com.test") @EnableWebMvc // <mvc:annotation-driven /> public class ServletContextXml extends WebMvcConfigurerAdapter {                 @Over...

Useful Site

JQuery: https://api.jquery.com Spring 설정 http://blog.naver.com/khg27_2000/220766009934 http://nanstrong.tistory.com/entry/%EC%8A%A4%ED%94%84%EB%A7%81%EA%B0%95%EC%9D%98-2%EB%B2%88%EC%A7%B8-xml-%EC%84%A4%EC%A0%95 annotation http://noritersand.tistory.com/156