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
- SpringBoot
- 스프링 핵심 기능
- 스프링 핵심 원리
- 스프링
- Spring Boot
- JDBC
- Thymeleaf
- springdatajpa
- Servlet
- Exception
- 그리디
- 김영한
- Android
- JPQL
- 자바
- jpa
- 백준
- kotlin
- Greedy
- Proxy
- 인프런
- java
- transaction
- db
- http
- AOP
- QueryDSL
- pointcut
- spring
- 알고리즘
Archives
- Today
- Total
개발자되기 프로젝트
home 버튼 추가 본문
테스트를 하기 위해 페이지를 띄우면 각 화면에 "home"으로 가는 버튼이 없어서 불편하다...
각 뷰 상단에 홈버튼을 추가!
<div class="col">
<button class="w-100 btn btn-secondary btn-lg" type="button"
th:onclick="|location.href='@{/}'|">
홈으로 이동
</button>
</div>
모든 화면에 추가해줬다.. 한결 편 ㅡ 안..
GitHub : 211005 home button
Comments