免费观看又色又爽又黄的小说免费_美女福利视频国产片_亚洲欧美精品_美国一级大黄大色毛片

springboot怎么用webjars集成jquery,bootstrap,layui

這篇文章主要介紹了springboot怎么用webjars集成jquery,bootstrap,layui,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

“只有客戶發(fā)展了,才有我們的生存與發(fā)展!”這是成都創(chuàng)新互聯(lián)的服務(wù)宗旨!把網(wǎng)站當(dāng)作互聯(lián)網(wǎng)產(chǎn)品,產(chǎn)品思維更注重全局思維、需求分析和迭代思維,在網(wǎng)站建設(shè)中就是為了建設(shè)一個不僅審美在線,而且實用性極高的網(wǎng)站。創(chuàng)新互聯(lián)對網(wǎng)站建設(shè)、網(wǎng)站設(shè)計、網(wǎng)站制作、網(wǎng)站開發(fā)、網(wǎng)頁設(shè)計、網(wǎng)站優(yōu)化、網(wǎng)絡(luò)推廣、探索永無止境。

倉庫中搜索坐標:https://mvnrepository.com/ springboot怎么用webjars集成jquery,bootstrap,layui springboot怎么用webjars集成jquery,bootstrap,layui

必須要放:webjars-locator這個依賴來加載后面引入的jquery等庫

 <!-- https://mvnrepository.com/artifact/org.webjars/webjars-locator -->
        <dependency>
            <groupId>org.webjars</groupId>
            <artifactId>webjars-locator</artifactId>
            <version>0.40</version>
        </dependency>
        <!-- https://mvnrepository.com/artifact/org.webjars.bower/jquery -->
        <dependency>
            <groupId>org.webjars.bower</groupId>
            <artifactId>jquery</artifactId>
            <version>3.6.0</version>
        </dependency>
        <!-- https://mvnrepository.com/artifact/org.webjars/bootstrap -->
        <dependency>
            <groupId>org.webjars</groupId>
            <artifactId>bootstrap</artifactId>
            <version>5.0.0</version>
        </dependency>
        <!-- https://mvnrepository.com/artifact/org.webjars/layui -->
        <dependency>
            <groupId>org.webjars</groupId>
            <artifactId>layui</artifactId>
            <version>2.5.7</version>
        </dependency>
<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
    <link rel="shortcut icon" href="../static/favicon.ico" th:href="@{/static/favicon.ico}"/>
    <script src="/webjars/jquery/dist/jquery.js"></script>
<!--bootstarp基于jquery,所以放在前面-->
    <script src="/webjars/bootstrap/js/bootstrap.js"></script>
    <link rel="stylesheet" href="/webjars/bootstrap/css/bootstrap.css"/>

<!--    layui引入-->
    <script src="/webjars/layui/layui.js"></script>
    <link rel="stylesheet" href="/webjars/layui/css/layui.css"/>
</head>
<body>
<div class="con">
 名稱(jquery):
            <select data-placeholder="請選擇商品"   name="productid2" id="productid2" required>
            </select>
 layui時間:
            <input type="text" class="layui-input" id="test5" placeholder="yyyy-MM-dd HH:mm:ss"/>
              bootstrap 分頁效果:
            <nav aria-label="Page navigation example">
                <ul class="pagination">
                    <li class="page-item"><a class="page-link" href="#">Previous</a></li>
                    <li class="page-item"><a class="page-link" href="#">1</a></li>
                    <li class="page-item"><a class="page-link" href="#">2</a></li>
                    <li class="page-item"><a class="page-link" href="#">3</a></li>
                    <li class="page-item"><a class="page-link" href="#">Next</a></li>
                </ul>
            </nav>
</div>
 <script>
  $(function(){
                //調(diào)用后端接口
                $.get("/product/getProductList",
                    {},
                    function(data){
                        debugger;
                        let productlist = '<option   value=""   selected>-請選擇商品-</option>';
                        for (let i = 0; i < data.length; i++) {
                            let product = data[i];
                            productlist += '<option   value="'+product.id+'"   selected>'+product.productname+'</option>';
                        }
                        //所有的書的列表
                        $("#productid2").html(productlist);
                    });
            });

            $(function(){
                // alert("jq main_xs ready");
                layui.use('laydate', function(){
                    var laydate = layui.laydate;
                    //日期時間選擇器
                    laydate.render({
                        elem: '#test5'
                        ,type: 'datetime'
                    });
                });
            });
        </script>
</body>
</html>
package com.example.springboot_jxc_0511.jxc.controller;


import com.example.springboot_jxc_0511.jxc.entity.Product;
import com.example.springboot_jxc_0511.jxc.service.IProductService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;

import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.bind.annotation.RestController;

import java.util.List;

/**
 * <p>
 *  前端控制器
 * </p>
 *
 * @author gongxl
 * @since 2021-05-11
 */
@Controller
@RequestMapping("/product")
public class ProductController {
    @Autowired
    private IProductService iProductService;

    @RequestMapping("getProductList")
    @ResponseBody
    public List<Product> getProductList(){
        //視圖名
        List<Product> productList = iProductService.list();
        return productList;
    }
}

感謝你能夠認真閱讀完這篇文章,希望小編分享的“springboot怎么用webjars集成jquery,bootstrap,layui”這篇文章對大家有幫助,同時也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,更多相關(guān)知識等著你來學(xué)習(xí)!

分享名稱:springboot怎么用webjars集成jquery,bootstrap,layui
文章源于:http://newbst.com/article10/jhesgo.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供全網(wǎng)營銷推廣網(wǎng)站營銷、自適應(yīng)網(wǎng)站、網(wǎng)站策劃標簽優(yōu)化營銷型網(wǎng)站建設(shè)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

成都app開發(fā)公司