티스토리 뷰
728x90
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<title>Spring Web MVC Student Home</title>
</head>
<body>
<div class="container">
<h1 class="display-4 text-center">Locations</h1>
<div class="row mt-4">
<table class="table table-dark">
<thead class="thead-light text-center">
<tr>
<th>ID</th>
<th>Code</th>
<th>Name</th>
<th>Type</th>
<th>Actions</th>
</tr>
</thead>
<tbody class="text-center">
<c:forEach var="location" items="${ locations }">
<tr>
<td>${ location.id }</td>
<td>${ location.code }</td>
<td>${ location.name }</td>
<td>${ location.type }</td>
<td>
<a href="${ pageContext.request.contextPath }/deleteLocation?id=${location.id}"
class="btn btn-danger btn-sm">Delete</a> |
<a href="${ pageContext.request.contextPath }/showUpdate?id=${location.id}"
class="btn btn-danger btn-sm">Edit</a>
</td>
</tr>
</c:forEach>
</tbody>
</table>
<a href="${ pageContext.request.contextPath }/showCreate" class="btn btn-info">Add Location</a>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"
integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n" crossorigin="anonymous">
</script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous">
</script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"
integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous">
</script>
</body>
</html>
728x90
'Client Technologies > Bootstrap' 카테고리의 다른 글
BootStrap : WebJars (0) | 2020.08.03 |
---|---|
Bootstrap : jsp form 정보 card에 보여주기 예제 template (0) | 2020.06.08 |
Bootstrap : jsp form input template (0) | 2020.06.07 |
Bootstrap : Grid Layout (0) | 2020.06.02 |
Bootstrap : Responsive Breakpoint, Display (0) | 2020.06.02 |
댓글
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
- 도커 개발환경 참고
- AWS ARN 구조
- Immuability에 관한 설명
- 자바스크립트 멀티 비동기 함수 호출 참고
- WSDL 참고
- SOAP 컨슈머 참고
- MySql dump 사용법
- AWS Lambda with Addon
- NFC 드라이버 linux 설치
- electron IPC
- mifare classic 강의
- go module 관련 상세한 정보
- C 메모리 찍어보기
- C++ Addon 마이그레이션
- JAX WS Header 관련 stackoverflow
- SOAP Custom Header 설정 참고
- SOAP Custom Header
- SOAP BindingProvider
- dispatcher 사용하여 설정
- vagrant kvm으로 사용하기
- git fork, pull request to the …
- vagrant libvirt bridge network
- python, js의 async, await의 차이
- go JSON struct 생성
- Netflix Kinesis 활용 분석
- docker credential problem
- private subnet에서 outbound IP 확…
- 안드로이드 coroutine
- kotlin with, apply, also 등
- 안드로이드 초기로딩이 안되는 경우
- navigation 데이터 보내기
- 레이스 컨디션 navController
- raylib
TAG
- RestTemplate
- crud
- jsp
- Many-To-Many
- Rest
- MYSQL
- one-to-one
- 설정
- login
- hibernate
- Spring
- Spring Security
- 로그인
- 자바
- XML
- Security
- 외부파일
- spring boot
- one-to-many
- 설정하기
- 상속
- mapping
- form
- 매핑
- 하이버네이트
- WebMvc
- 스프링부트
- Angular
- 스프링
- Validation
250x250