搜索流程從首頁開始
后端
SearchService接口

前端
表單提交路徑【th:action="@{/search/list}" 】
獲取搜索條件中的關鍵字進行回顯【th:value="${searchMap.keywords}"】
<!--頭部-->
<div class="search">
<form th:action="@{/search/list}" class="sui-form form-inline">
<div class="input-append">
<input th:type="text" id="autocomplete" name="keywords" th:value="${searchMap.keywords}" class="input-error input-xxlarge" />
<button class="sui-btn btn-xlarge btn-danger" th:type="submit">搜索</button>
</div>
</form>
</div>
