더북(TheBook)

2. WEB-INF/flows/order 폴더에 orderShippingInfo.jsp 파일을 생성하고 다음 내용을 작성합니다. 웹 플로우 설정 파일 order-flow.xml의 <view-state> 요소에 설정한 뷰 페이지입니다.

코드 15-20 orderShippingInfo.jsp

<%@ page contentType="text/html; charset=utf-8" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form" %>

<html>
<head>
<link href="<c:url value="/resources/css/bootstrap.min.css"/>" rel="stylesheet">
<title>Shipping</title>
</head>
<body>
<nav class="navbar navbar-expand navbar-dark bg-dark">
    <div class="container">
        <div class="navbar-header">
            <a class="navbar-brand" href="./home">Home</a>
        </div>
    </div>
</nav>
<div class="jumbotron">
    <div class="container">
        <h1 class="display-3">배송정보</h1>
    </div>
</div>

<div class="container">

    <form:form modelAttribute="order.shipping" class="form-horizontal"> 
    <fieldset>
    <legend>배송 세부 사항</legend>
신간 소식 구독하기
뉴스레터에 가입하시고 이메일로 신간 소식을 받아 보세요.