html

Spring

Spring STEP 13 - Board

★ 프로젝트 생성 - New > Spring Legacy Project > Spirng MVC Project > SecurityBoardTest > com.test.board > Finish ■ 구현 목표 1. 회원 기능(DB 구축, 가입 X, 로그인 구현) 2. 게시판 기능(CRUD) ■ 기초 셋팅 https://github.com/pinnpublic/class/wiki/%EC%8A%A4%ED%94%84%EB%A7%81-%ED%94%84%EB%A1%9C%EC%A0%9D%ED%8A%B8-%EC%9D%BC%EA%B4%84-%EC%A0%81%EC%9A%A9 스프링 프로젝트 일괄 적용 수업. Contribute to pinnpublic/class development by creating an account ..

Spring

Spring STEP 12 - Spring Security 2

★ 회원가입 ■ 파일 생성 com.test.controller > MemberController.java com.test.mapper > MemberMapper.java(I) com.test.domain > MemberDTO.java > AuthDTO.java - src/main/resources > com > test > mapper > MemverMapper.xml - views > register.jsp > registerok.jsp ■ 기초 셋팅 MemberMapper.xml MemberDTO.java import java.util.List; import lombok.Data; @Data public class MemberDTO { private String userid; private Strin..

Spring

Spring STEP 11 - Spring Security

★ 프로젝트 생성 - New > Spring Legacy Project > Spring MVC Project > "SecurityTest" > "com.test.security" > Finish ★ 스프링 시큐리티 기존 Servlet/JSP > 인증(증명, 인증티켓) + 허가(권한) > 세션 기반 인증 동작 방식 > 서블릿 필터와 스프링 인터셉터를 사용해서 보안을 처리 ■ 기초셋팅 https://github.com/pinnpublic/class/wiki/%EC%8A%A4%ED%94%84%EB%A7%81-%ED%94%84%EB%A1%9C%EC%A0%9D%ED%8A%B8-%EC%9D%BC%EA%B4%84-%EC%A0%81%EC%9A%A9#root-contextxml 스프링 프로젝트 일괄 적용 수업. Cont..

Spring

Spring STEP 10 - MyBatisSimple

★ 새 프로젝트 New > Spring Legacy Project > Spring MVC Project > "MyBatisSimpleTest" > "com.test.simple" > Finish ■ 기초 셋팅 https://github.com/pinnpublic/class/wiki/%EC%8A%A4%ED%94%84%EB%A7%81-%ED%94%84%EB%A1%9C%EC%A0%9D%ED%8A%B8-%EC%9D%BC%EA%B4%84-%EC%A0%81%EC%9A%A9 스프링 프로젝트 일괄 적용 수업. Contribute to pinnpublic/class development by creating an account on GitHub. github.com 1. pom.xml 셋팅 설정 2. ojdbc6.jar..

Spring

Spring STEP 9 - AOP

★ 새 프로젝트 생성 - New > Spring Legacy Project > Spring MVC Project > "AOPTest" > "com.test.aop" > Finish ■ pom.xml 셋팅 4.0.0 com.test aop AOPTest war 1.0.0-BUILD-SNAPSHOT 11 5.0.7.RELEASE 1.6.10 1.6.6 org.springframework spring-context ${org.springframework-version} commons-logging commons-logging org.springframework spring-webmvc ${org.springframework-version} org.aspectj aspectjrt ${org.aspectj-ver..

Spring

Spring STEP 8 - 파일 업로드

★ 새 프로젝트 만들기 - New > Spring Legacy Project > Spring MVC Project > "FileTest" > "com.test.file" > Finish ■ 파일 업로드 1. cos.jar > 개발 종료 2. commons-fileupload > 많이 사용 3. Servlet 3.0 이상 > 파일 업로드 기능 내장 ■ 기초 셋팅 https://github.com/pinnpublic/class/wiki/%EC%8A%A4%ED%94%84%EB%A7%81-%ED%94%84%EB%A1%9C%EC%A0%9D%ED%8A%B8-%EC%9D%BC%EA%B4%84-%EC%A0%81%EC%9A%A9 스프링 프로젝트 일괄 적용 수업. Contribute to pinnpublic/class d..

Spring

Spring STEP 7 - Tiles

★ 새 프로젝트 - New > Spring Legacy Project > Spring MVC Project > "NonTilesTest" > "com.test.nontiles" > Finish - New > Spring Legacy Project > Spring MVC Project > "TilesTest" > "com.test.tiles" > Finish ★ Tiles 레이아웃 프레임워크 페이지 레이아웃을 구성하고 관리하는 기술 ■ 구현 기능 - 메인(index.do) - 회원 - 회원정보(member/info.do) - 활동내역(member/history.do) - 즐겨찾기(member/favorite.do) - 관리자 - 로그(admin/log.do) - 환경설정(admin/setting.do) ■..

Spring

Spring STEP 6 - MyBatis 활용 게시판 만들기

★ 프로젝트 생성 New > Spring Legacy Project > Spring MVC Project > "Code" > "com.test.code" > Finish - 기본 설정 + MyBatis ■ 데이터베이스 생성 create table tblCode ( seq number primary key, --번호(PK) subject varchar2(500) not null, --제목(설명) code varchar2(2000) not null, --코드조각 regdate date default sysdate not null, language varchar2(50) not null --언어 종류 ); create sequence seqCode; ■ 파일 생성 "com.test.controller" > C..

IT의 큰손
'html' 태그의 글 목록 (3 Page)