#7-2 / mybatis(ibatis)를 이용 DAO + config,mapper,xml DB연결
⚡ insert 테스트dbcong.xml 의 하단 bean id="template" 여긴 아직 사용 x - 주석처리 한 뒤 테스트- /META-INf/config.xml //이름 맘대로 - /META-INf/mapper.xml //이름 맘대로 //이름 맘대로 insert into coupon (cidx,cpname,cprate,cpuse,cpdate,indate) values ('0',#{cpname},#{cprate},#{cpuse},#{cpdate},now()) - @Controller @Injectprivate SqlSessionFactory sqlfact;/*@Resource //어디선가 쓸거임 아직 x private SqlSessionTemplate sqlsession;*/@GetMa..
2024. 7. 22.
#5-1 / Jquery Ajax & API 서버통신 (JSON) / JSONArray,JSONObject 사용
ecma랑 jquery 는 사실 매칭이 잘 안됨.. 버그 생김ㅋ ❓ API 서버REST ( get,post )xml,json 로드받는 역할아키텍처 구조RESTful ( get,post,put,delete ) - url 파라미터로 세팅CDN ( get,post ) - Image,VideoSOAP ( xml만 사용 )나중에 공부해보길 추천ㅋ , REST보다 어려움REST와 특성이 비슷함금융권에서 많이 사용 - 보안 좋아서프로토콜 구조(서버와 서버간의 DATA 교환)❓ 아키텍처 , 프로토콜아키텍처 : 데이터의 구조 형태프로토콜 : 서버와 서버간의 통신1. html로 받아서 json으로 변경하는 방식2. 처음부터 json파일로 받는 형식⚡ REST (JSON 이니까) - (dataType : "HTML" 로 받..
2024. 7. 19.
#5-4 / [ legacy ] 로그인 내가 해봉거
table 만듬 create table member(midx int(7) not null auto_increment,mid varchar(100) not null,mpass varchar(100) not null,mtss enum('SKT','KT','LGT','알뜰폰') not null default 'SKT',mphone char(11) not null,joindate timestamp not null default current_timestamp,primary key(midx),unique id(mid));
2024. 7. 12.