Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- cisco packet
- ospf
- jsp
- 라우터
- w3school
- 오라클
- Oracle
- sql
- autoset
- 정보처리기사
- html
- 자바
- VLAN
- rinux
- 데이터베이스
- 리눅스
- ciscopacket
- 버추얼머신
- 정처기필기
- Cisco
- jsp연결
- javaee
- 참조타입
- NCS
- 원형그래프
- Java
- 이것이 자바다
- 네트워크관리사
- 네트워크
- php
Archives
- Today
- Total
기록해! 정리해!
MyBatis 사용하기 본문
1. 새프로젝트 생성하기
2. application.properties
# 주석 ( none , servlet )
spring.main.web-application-type=servlet
server.port=8000
# 배너 OFF
spring.main.banner-mode=off
# 오라클 컨넥션 정보
spring.datasource.driver-class-name=oracle.jdbc.driver.OracleDriver
spring.datasource.url =jdbc:oracle:thin:@localhost:1521:xe
spring.datasource.username=system
spring.datasource.password=1234
# JSP 경로 설정
spring.mvc.view.prefix=/WEB-INF/view/
spring.mvc.view.suffix=.jsp
#### 다중 mapper 설정하기
mybatis.mapper-locations=classpath:mapper/**/*.xml
- JSP 경로 설정
->> 폴더 생성해서 만들어주기.
이 밑에 jsp를 만들어서 사용하는 것
->> Run as config 하면 콘솔창 결과
3. index.html 만들기 (static에서 만듦)
<!DOCTYPE html>
<html>
<head>
<meta charset="EUC-KR">
<title>Insert title here</title>
</head>
<body>
<div align=center>
<h2> MyBatis 프로젝트 </h2>
<h3> 게시판 만들기 </h3>
</div>
</body>
</html>
'SpringBoot' 카테고리의 다른 글
myBatis (0) | 2022.10.11 |
---|---|
다중 mapper 설정하기 (0) | 2022.10.11 |
eclipse web developer tools 3.27 + MyBatis 다운 (0) | 2022.10.11 |
VO 객체를 리턴하는 경우 --getBoard / List 컬렉션을 리턴하는 경우 -- getBoardList (0) | 2022.10.11 |
lombok 라이브러리 추가하기 (0) | 2022.10.11 |
Comments