91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

SpringBoot(七)整合themeleaf+bootstrap

發布時間:2020-07-21 13:56:10 來源:網絡 閱讀:1230 作者:小楊Java 欄目:大數據

前言

Thymeleaf是用于Web和獨立環境的現代服務器端Java模板引擎。Thymeleaf的主要目標是將優雅的自然模板帶到您的開發工作流程中—HTML能夠在瀏覽器中正確顯示,并且可以作為靜態原型,從而在開發團隊中實現更強大的協作。Thymeleaf能夠處理HTML,XML,JavaScript,CSS甚至純文本。

Spring-boot-starter-web集成了Tomcat以及Spring MVC,會自動配置相關東西,Thymeleaf是用的比較廣泛的模板引擎.

更新pom.xml

<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
更新application.properties

#thymeleaf

spring.thymeleaf.cache=false

spring.thymeleaf.prefix=classpath:/templates/

spring.thymeleaf.check-template-location=true

spring.thymeleaf.suffix=.html

spring.thymeleaf.encoding=UTF-8

spring.thymeleaf.mode=HTML5

創建Controller

之所以新建Controller,而不是復用之前的IndexController,是因為IndexController使用的是 @RESTController 注解的方式。

  1. 使用@Controller 注解,在對應的方法上,視圖解析器可以解析return 的jsp,html頁面,并且跳轉到相應頁面。若返回json等內容到頁面,則需要加@ResponseBody注解

  2. @RestController注解,相當于@Controller+@ResponseBody兩個注解的結合,返回json數據不需要在方法前面加@ResponseBody注解了,但使用@RestController這個注解,就不能返回jsp,html頁面,視圖解析器無法解析jsp,html頁面

新建UserController:

package com.demo.controller;

import com.demo.pojo.UserPosition;

import com.demo.service.UserService;

import org.springframework.beans.factory.annotation.Autowired;

import org.springframework.stereotype.Controller;

import org.springframework.ui.Model;

import org.springframework.web.bind.annotation.RequestMapping;

import java.math.BigDecimal;

import java.util.List;

/**

  • Created by toutou on 2018/10/20.

*/

@Controller

public class UserController {

@Autowired

UserService userService;

@RequestMapping(value = "/mynearby")

public String myNearby(Model model, double lon, double lat)

{

double r = 6371;//地球半徑千米

double dis = 2; //半徑 單位:km

double dlng = 2Math.asin(Math.sin(dis/(2r))/Math.cos(lat*Math.PI/180));

dlng = dlng*180/Math.PI;//角度轉為弧度

double dlat = dis/r;

dlat = dlat*180/Math.PI;

double minlat =lat-dlat;

double maxlat = lat+dlat;

double minlng = lon -dlng;

double maxlng = lon + dlng;

List<UserPosition> list = userService.getVicinity(BigDecimal.valueOf(minlng), BigDecimal.valueOf(maxlng), BigDecimal.valueOf(minlat), BigDecimal.valueOf(maxlat));

model.addAttribute("myinfo",list);

return "mynearby";

}

}

創建頁面

/src/main/resources/templates/mynearby.html

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org" >

<html lang="en">

<head>

<meta content="text/html;charset=UTF-8"/>

<meta name="viewport" content="width=device-width,initial-scale=1"/>

<link href="https://cdn.bootcss.com/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">

<link href="https://cdn.bootcss.com/twitter-bootstrap/3.3.7/css/bootstrap-theme.min.css" rel="stylesheet">

<title>附近的小區</title>

</head>

<body>

<br/>

<div class="panel panel-primary">

<div class="panel-heading">

<h4 class="panel-title">我的坐標</h4>

</div>

<div class="panel-body">

<span>116.31064,40.062658</span>

</div>

<br/>

<div th:if="${not #lists.isEmpty(myinfo)}">

<div class="panel panel-primary">

<div class="panel-heading">

<h4 class="panel-title">附近的小區</h4>

</div>

<div class="panel-body">

<ul class="list-group">

<li class="list-group-item" th:each="item : ${myinfo}">

<span th:text="${item.id}"></span>

<span th:text="${item.city}"></span>

<span th:text="${item.position}"></span>

<span th:text="${item.longitude}"></span>

<span th:text="${item.latitude}"></span>

<button class="btn">刪除</button>

</li>

</ul>

</div>

</div>

</div>

</div>

<script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.min.js"></script>

<script src="https://cdn.bootcss.com/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>

<script th:inline="javascript">

// var single = [[${singlePerson}]];

// console.log(single.name+"/"+single.age);

$(function(){

$(".btn").click(function(){

alert("刪除功能完善中...");

});

});

</script>

</body>

</html>

xmlns:th="http://www.thymeleaf.org"命名空間,將鏡頭轉化為動態的視圖,需要進行動態處理的元素使用“th:”前綴;兩個link引入bootstrap框架,通過@{}引入web靜態資源(括號里面是資源路徑)訪問model中的數據通過${}訪問.

運行效果:

SpringBoot(七)整合themeleaf+bootstrap目錄結構:

SpringBoot(七)整合themeleaf+bootstrap

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

甘德县| 洛川县| 金平| 左云县| 屏南县| 汤阴县| 金乡县| 桑植县| 乡宁县| 宣威市| 建阳市| 林芝县| 宁都县| 嘉黎县| 肇东市| 武隆县| 福海县| 泰宁县| 蒙阴县| 黄冈市| 建水县| 乃东县| 刚察县| 都安| 探索| 文安县| 石景山区| 涿鹿县| 石家庄市| 桃园县| 宜兰县| 宾阳县| 吉水县| 三河市| 利津县| 呼伦贝尔市| 衡东县| 福建省| 西宁市| 呼和浩特市| 工布江达县|