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
- 스프링 핵심 원리
- QueryDSL
- SpringBoot
- AOP
- 그리디
- spring
- java
- JDBC
- 백준
- 스프링
- Spring Boot
- Greedy
- 김영한
- Android
- db
- jpa
- http
- springdatajpa
- transaction
- Thymeleaf
- pointcut
- 자바
- 스프링 핵심 기능
- Proxy
- 알고리즘
- kotlin
- Exception
- 인프런
- Servlet
- JPQL
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