본문 바로가기

Web

(133)
Datepicker 보호되어 있는 글입니다.
JQuery 공부하기 보호되어 있는 글입니다.
AJAX JSON란? 보호되어 있는 글입니다.
MyBatis 매뉴얼 MyBatis 매뉴얼]
MyBatis를 이용한 실습 (1) ㅁㅁ
Mybatis xml 작성하기 1번 select shop_no, shop_name, shop_location, shop_status from shop 2번 config-mybatis.xml 작성하기 select shop_no, shop_name, shop_location, shop_status from shop 3번 Log4j 만들기 src - > log4j.properties 파일 생성하기 로거 로그단계 = > DEBUG , 4가지단계로 나눠짐.....일반적으로 DEBUG를 많이 사용함. stout 표준출력이라는 의미 %p - 로깅 단계를 출력 %m - 로그를출력 %t - 로그발생 스레드명 출력 %n - 개행문자 출력 ( 줄바꿈 ) log4j.rootLogger=DEBUG, stdout log4j.appender.stdout=org..
mybatis 설정 방법 http://blog.mybatis.org/ Products ↓↓↓↓↓↓ Products Project Description Links MyBatis 3 SQL Mapping Framework for Java download | docs Generator Code generator for MyBatis and iBATIS download | docs Migrations Migrations database change management tool. download | docs Migrations Maven Plugin Maven plugin for Migrations. download | docs MyBatis for Scala MyBatis for Scala. download | docs ↓ ↓↓↓↓↓↓..
2013.10.05 스프링 시작 context-spring.xml 을 만들고 beans에 있는 Spring 관련 url 등 //DB 설치후 게정 만들고 권한 주는 방법. create user mybaits identified by mybatis$ grant connect, resource, dba to mybatis; SLQ 만들기 CREATE TABLE SHOP ( SHOP_NO NUMBER NOT NULL, SHOP_NAME VARCHAR2(100 BYTE), SHOP_LOCATION CLOB, SHOP_STATUS VARCHAR2(20 BYTE), CONSTRAINT SHOP_PK PRIMARY KEY (SHOP_NO) ); INSERT INTO SHOP (SHOP_NO,SHOP_NAME,SHOP_LOCATION,SHOP_STAT..