일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- 생성자
- Spring
- 배열
- Java
- JSP
- OGNL
- JavaScript
- Android
- Eclips
- oracle
- HTML
- 메소드
- struts2
- layout
- 어노테이션
- Graphic
- 안드로이드
- Menu
- 에러페이지
- 클래스
- AWT
- 이클립스
- 기본
- 국제화
- 전화걸기
- 예외처리
- 메서드
- paint
- mybatis
- 오버로딩
- Today
- Total
목록전체 글 (572)
note
[JSP/Spring] - Spring @PostConstruct / @PreDestroy 어노테이션과 라이프 사이클 [JSP/Spring] - Spring @Resource 어노테이션 이전 게시물과 연관 있습니다 실행화면(Main06.java) HomeController [alarmDevice=null, viewer=null, camera1=Camera [number=1], camera2=Camera [number=2], camera3=Camera [number=3], camera4=Camera [number=4]] @Component라고 되어있는 객체만 오토스캔 Camera 객체를 명시한 이유는 오토 스캔 대상이 아니기 때문 (단순 작업일 경우엔 편리하지만) 명시적으로 넘겨야될 정보가 많기 때문에 많..
[JSP/Spring] - Spring @Resource 어노테이션 이전 게시물과 연관 있습니다 실행 화면(Main05.java) init 메소드 동작 close 메소드 동작 기존 ApplicationContext context = new ClassPathXmlApplicationContext(configLocations); AbstractApplicationContext context = new ClassPathXmlApplicationContext(configLocations); 추가 context.registerShutdownHook(); 작업이 끝난후 메모리 정리 라이프 사이클을 만들 수 있지만 많이 사용하는 방법은 아님 applicationContext.xml HomeController2.jav..
Spring2.5부터 사용가능 스프링 싱글턴패턴 아이디 갯수만큼 객체생성 동일한 객체지만 객체주소가 다른 객체를 받기 위한 같은 프로퍼티 명의 데이터를 받는다 실행화면(Main04.java) HomeController [alarmDevice=null, viewer=null, camera1=Camera [number=1], camera2=Camera [number=2], camera3=Camera [number=3], camera4=Camera [number=4]] applicationContext.xml HomeController.javapackage madvirus.spring.chap04.homecontrol; import javax.annotation.Resource; public class Hom..
applicationContext.xml SystemMonitor2.javapackage madvirus.spring.chap04.homecontrol; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Qualifier; public class SystemMonitor2 { private MessageSender sender; @Autowired @Qualifier("main") private Recorder recorder; public SystemMonitor2(MessageSender sender) { this.sender = sender; }..
applicationContext.xml MessageSender.javapackage madvirus.spring.chap04.homecontrol; public interface MessageSender { } SmsSender.javapackage madvirus.spring.chap04.homecontrol; public class SmsSender implements MessageSender { public SmsSender() {} public SmsSender(boolean value) {} } SystemMonitor.javapackage madvirus.spring.chap04.homecontrol; import org.springframework.beans.factory.annotati..
전제 조건 applicationContext.xml 에 applicationContext.xml Camera.javapackage madvirus.spring.chap04.homecontrol; import org.springframework.beans.factory.annotation.Required; public class Camera { private int number; public Camera(){ } @Required public void setNumber(int number) { this.number = number; } @Override public String toString() { return "Camera [number=" + number + "]"; } } Main.java pack..
/ 밑에 Add는 interface 위에 Browse는 Class extends 입니다 자동완성 기능을 이용하여서 ok 클래스는 위에 Browse를 입력하여 합니다
message/error.propertieslogin.fail=Member ID {0} is not matching password message/greeting_en.properties greeting=Hello! message/greeting_ko.properties greeting=안녕하세요! applicationContext.xml message.greeting message.error Main.javapackage madvirus.spring.chap03; import java.util.Locale; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXml..
applicationContext02.xml Main06 package madvirus.spring.chap02; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; public class Main06 { public static void main(String[] args){ String[] configLocations = new String[] { "applicationContext02.xml" }; ApplicationContext context = new ClassPathXmlApplicationContext( confi..
applicationContext02.xml Main05 package madvirus.spring.chap02; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; public class Main05 { public static void main(String[] args) { String[] configLocations = new String[] { "applicationContext02.xml" }; ApplicationContext context = new ClassPathXmlApplicationContext( conf..
원본 주소http://orblog.tistory.com/262 chap01.zip chap02.zip==================================이론======================================스프링 컨테이너BeanFactory 인터페이스 FileSystemResource : 파일 시스템의 특정 파일로부터 정보를 읽어 온다. InputStreamResource : InputStream 으로 부터 정보를 읽어온다. ClassPathResource : 클래스패스(src) 에있는 자원으로부터 정보를 읽어온다. UrlResource : 특정 URL로부터 정보를 읽어온다. ServletCont..
Spring의 핵심인 Di applicationContext.xml Articlepackage madvirus.spring.chap01; public class Article { } ArticleDaopackage madvirus.spring.chap01; public interface ArticleDao { void insert(Article article); } Mainpackage madvirus.spring.chap01; import org.springframework.beans.factory.BeanFactory; import org.springframework.beans.factory.xml.XmlBeanFactory; import org.springframework.core.io.ClassP..
http://www.springsource.org/download 에서 다운 받는다 응용프로그램 lib 다운 받은 파일 폴더 통채로 복사 프로젝트에 붙여넣기 위치 설정 java Build Path -> 에서 Libraries Add JARs.. 추가 ㅇㅋ
장점 웹과 응용프로그램 둘다 지원함 EJB에 비해 가벼움 단점 다른 프레임웍보다 어렵다(복잡) 스트럿츠2에 비해 무겁다 DI(dependency Injection) 기존 struts2에서 인터셉터가 처리 하던 부분을 향상시킨 부분
새로운 파일 생성 하면 등록해야 하는곳 struts.xml -> tiles.xml -> tiles-defs.xml or tiles-defs2.xml struts.xml tiles.xml index menu1 menu2 menu3 teach web.xml TilesExam index.jsp org.apache.tiles.impl.BasicTilesContainer.DEFINITIONS_CONFIG /WEB-INF/tiles-defs.xml,/WEB-INF/tiles-defs2.xml org.apache.struts2.tiles.StrutsTilesListener TilesExample org.apache.struts2.dispatcher.FilterDispatcher TilesExample /* tiles..
목록 글등록 수정 비번확인 BoardMapper.xml #{filename,jdbcType=VARCHAR}) null일 경우에 에러가 나지 않게 하기 위한 표시(null을 허용함) BoardDao.java BoardMapper.xml에서 id를 통해 태그에 접근하게 되는데 해당 id는 메소드 명을 사용한다 WriteAction.java 최대 업로드 사이즈를 초과했습니다 부분은 getActionErrors()가 exceeds라는 단어가 리턴되어 져서 그 단어가 출력시에 if문에 진입 BoardService.java SqlSession이 BoardDao.java 와 BoardMapper.xml를 연결함
MyBatis 관련 문서 가입 수정하기 삭제 변경하는 것들(입력 수정 삭제는 항상) session.commit()을 해야된다 그렇지 않으면 반영이 되지 않는다 select 제외
http://fancybox.net/ 기존 LightBox 기능이 부족한점을 한층 업그레이드 된 라이브러리 iframe 도 가능 이미지도 가능
Set.jsp action : page : ${someProperty} request : session : application : [JSP/스트럿츠2] - struts2 if / else if / else 태그 예제(OGNL표현식) EL / OGNL 차이점 의 OGNL 표현식에 대해 OGNL표현식 jsp EL이 가지고 오는 영역 page, request, session ,application 4개의 영역 struts2 OGNL이 가지고 오는 영역 - Action , page, request, session ,application 5개의 영역 표현법은 ${}가 아닌 %{} getter를 사용했을때 action에 저장이 되어 있고 request에도 저장이 되어 있다 액션 외의 영역에 접근할때는 #을 붙인다..