Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
jin-co committed Sep 3, 2023
1 parent e8a04d0 commit 2c88607
Showing 1 changed file with 315 additions and 0 deletions.
315 changes: 315 additions & 0 deletions React/test-housing/tt.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,315 @@
<ul id="#list-of-contents">
<li>
<a style="font-size: 1.1rem" href="#common-settings">공통설정</a>
<ul>
<li>
<a href="#dependency">디펜던시</a>
<ul>
<li>
<a href="#spring-web">스프링 웹</a>
</li>
<li>
<a href="#devtools">Devtools</a>
</li>
</ul>
</li>
</ul>
</li>
<li>
<a style="font-size: 1.1rem" href="#thymeleaf">타임리프</a>
<ul>
<li>
<a href="#thymeleaf-dependency">디펜던시</a>
</li>
<li>
<a href="#thymeleaf-controller">컨트롤러 설정</a>
</li>
<li>
<a href="#thymeleaf-template">템플릿 설정</a>
</li>
<li>
<a href="#thymeleaf-using-dynamic-values">동적가치 사용하기</a>
</li>
<li>
<a href="#thymeleaf-fragment">프래그먼트</a>
</li>
<li>
<a href="#thymeleaf-example">태그예시</a>
</li>
<li>
<a href="#thymeleaf-connection-js-css">자바스크립트, 스타일 연결하기</a>
</li>
</ul>
</li>
<li>
<a style="font-size: 1.1rem" href="#jsp">제이에스피</a>
<ul>
<li>
<a href="#jsp-anatomy">작동원리</a>
</li>
<li>
<a href="#jsp-tag-format">태그형태</a>
</li>
<li>
<a href="#jsp-dependency">디펜던시</a>
<ul>
<li>
<a href="#jsp-sp-ver-3-above">스프링 부트 3.0 버전 이상</a>
</li>
<li>
<a href="#jsp-sp-ver-3-below">▶ 스프링 부트 3.0 이전 버전</a>
</li>
</ul>
</li>
<li>
<a href="#jsp-file-path">파일위치 설정</a>
</li>
<li>
<a href="#jsp-runtime-env-setting">구동환경 설정</a>
</li>
<li>
<a href="#jsp-jstl">제이에스티엘</a>
<ul>
<li>
<a href="#jstl-tags">태그구성</a>
</li>
</ul>
</li>
<li>
<a href="#jsp-controller">컨트롤러 생성</a>
</li>
<li>
<a href="#jsp-template">템플릿 생성</a>
</li>
<li>
<a href="#jsp-example">태그예시</a>
<ul>
<li>
<a href="#jsp-example-format-tag">형식설정 태그</a>
</li>
<li>
<a href="#jsp-example-jstl-tag">제이에스티엘 태그</a>
</li>
<li>
<a href="#jsp-example-jstl-core">제이에스티엘 코어</a>
<ul>
<li>
<a href="#core-out">▶ 동적가치 표시</a>
</li>
<li>
<a href="#core-set">▶ 지역변수 지정</a>
</li>
<li>
<a href="#core-remove">▶ 지역변수 제거 (널 처리)</a>
</li>
<li>
<a href="#core-catch">▶ 에러처리</a>
</li>
<li>
<a href="#core-condition">▶ 조건문</a>
</li>
<li>
<a href="#core-iteration">▶ 반복문</a>
</li>
<li>
<a href="#core-import"
>▶ 가져오기 (라이브러리사용, 해당 경로의 컨텐츠 노출)</a
>
</li>
<li>
<a href="#core-redirection">▶ 리디렉션</a>
</li>
</ul>
</li>
<li>
<a href="#jsp-example-jstl-fmt">제이에스티엘 포멧</a>
<ul>
<li>
<a href="#fmt-date">▶ 날짜시간</a>
</li>
<li>
<a href="#fmt-num">▶ 숫자</a>
</li>
<li>
<a href="#fmt-locale">▶ 번들, 지역언어, 지역시간</a>
</li>
<li>
<a href="#fmt-encoding">▶ 인코딩 타입</a>
</li>
</ul>
</li>
<li>
<a href="#jsp-example-jstl-function">제이에스티엘 함수</a>
<ul>
<li>
<a href="#function-string">문자관련</a>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>

<h2 id="comman-settings" data-ke-size="size23"><b>설정</b></h2>

<h2 id="thymeleaf" data-ke-size="size23"><b>타임리프</b></h2>
<h2 id="jsp" data-ke-size="size23"><b>제이에스피</b></h2>

<h3 id="dependency" data-ke-size="size23"><b>디펜던시</b></h3>

<h3 id="thymeleaf-dependency" data-ke-size="size23"><b>디펜던시</b></h3>
<h3 id="thymeleaf-controller" data-ke-size="size23"><b>컨트롤러 설정</b></h3>
<h3 id="thymeleaf-template" data-ke-size="size23"><b>템플릿 설정</b></h3>
<h3 id="thymeleaf-using-dynamic-values" data-ke-size="size23">
<b>동적가치 사용하기</b>
</h3>
<h3 id="thymeleaf-fragment" data-ke-size="size23"><b>프래그먼트</b></h3>
<h3 id="thymeleaf-example" data-ke-size="size23"><b>태그예시</b></h3>
<h3 id="thymeleaf-connection-js-css" data-ke-size="size23">
<b>자바스크립트, 스타일 연결하기</b>
</h3>
<h3 id="jstl-controller" data-ke-size="size23"><b>컨트롤러 생성</b></h3>
<h3 id="jstl-template" data-ke-size="size23"><b>템플릿 생성</b></h3>

<h2 id="jsp" data-ke-size="size23"><b>제이에스피</b></h2>
<h3 id="jsp-anatomy" data-ke-size="size23"><b>작동원리</b></h3>
<h3 id="jsp-tag-format" data-ke-size="size23"><b>태그형태</b></h3>
<h3 id="jsp-dependency" data-ke-size="size23"><b>디펜던시</b></h3>
<h3 id="jsp-file-path" data-ke-size="size23"><b>파일위치 설정</b></h3>
<h3 id="jsp-runtime-env-setting" data-ke-size="size23"><b>구동환경 설정</b></h3>
<h3 id="jsp-jstl" data-ke-size="size23"><b>제이에스티엘</b></h3>
<h3 id="jstl-example" data-ke-size="size23"><b>태그예시</b></h3>

<h4 id="jsp-sp-ver-3-above" data-ke-size="size23">
<b>스프링 부트 3.0 버전 이상</b>
</h4>
<h4 id="jsp-sp-ver-3-below" data-ke-size="size23">
<b>스프링 부트 3.0 이전 버전(h6)</b>
</h4>

<h4 id="jstl-tags" data-ke-size="size23"><b>태그구성</b></h4>

<h4 id="dependency" data-ke-size="size23"><b>Spring Web</b></h4>
<h4 id="dependency" data-ke-size="size23"><b>Devtools</b></h4>
<h4 id="thymeleaf" data-ke-size="size23"><b>타임리프</b></h4>
<h4 id="jsp-example-format-tag" data-ke-size="size23"><b>형식설정 태그</b></h4>
<h4 id="jsp-example-jstl-tag" data-ke-size="size23">
<b>제이에스티엘 태그</b>
</h4>
<h4 id="jsp-example-jstl-core" data-ke-size="size23">
<b>제이에스티엘 코어</b>
</h4>
<h4 id="jsp-example-jstl-core" data-ke-size="size23">
<b>제이에스티엘 포멧</b>
</h4>
<h4 id="jsp-example-jstl-function" data-ke-size="size23">
<b>제이에스티엘 함수</b>
</h4>

<p
id="core-out"
style="color: #333333; text-align: justify"
data-ke-size="size16"
>
<b>▶ 동적가치 표시</b>
</p>
<p
id="core-set"
style="color: #333333; text-align: justify"
data-ke-size="size16"
>
<b>▶ 지역변수 지정</b>
</p>
<p
id="core-remove"
style="color: #333333; text-align: justify"
data-ke-size="size16"
>
<b>▶ 지역변수 제거 (널 처리)</b>
</p>
<p
id="core-catch"
style="color: #333333; text-align: justify"
data-ke-size="size16"
>
<b>▶ 에러처리</b>
</p>
<p
id="core-condition"
style="color: #333333; text-align: justify"
data-ke-size="size16"
>
<b>▶ 조건문</b>
</p>
<p
id="core-iteration"
style="color: #333333; text-align: justify"
data-ke-size="size16"
>
<b>▶ 반복문</b>
</p>
<p
id="core-import"
style="color: #333333; text-align: justify"
data-ke-size="size16"
>
<b>▶ 가져오기 (라이브러리사용, 해당 경로의 컨텐츠 노출)</b>
</p>
<p
id="core-redirection"
style="color: #333333; text-align: justify"
data-ke-size="size16"
>
<b>▶ 리디렉션</b>
</p>
<p
id="fmt-date"
style="color: #333333; text-align: justify"
data-ke-size="size16"
>
<b>
<a
target="_blank"
href="https://www.w3schools.blog/jstl-fmtformatdate-formatting-tag"
>
▶ 날짜시간
</a>
</b>
</p>
<p
id="fmt-num"
style="color: #333333; text-align: justify"
data-ke-size="size16"
>
<b>
<a
target="_blank"
href="https://www.w3schools.blog/jstl-fmtformatnumber-formatting-tag"
>
▶ 숫자
</a>
</b>
</p>
<p
id="fmt-locale"
style="color: #333333; text-align: justify"
data-ke-size="size16"
>
<b>▶ 번들, 지역언어, 지역시간</b>
</p>
<p
id="fmt-encoding"
style="color: #333333; text-align: justify"
data-ke-size="size16"
>
<b>▶ 인코딩 타입</b>
</p>
<p
id="fmt-string"
style="color: #333333; text-align: justify"
data-ke-size="size16"
>
<b>▶ 문자관련</b>
</p>

0 comments on commit 2c88607

Please sign in to comment.