真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

springboot中怎么配置https證書

這篇文章將為大家詳細(xì)講解有關(guān)springboot中怎么配置https證書,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。

創(chuàng)新互聯(lián)公司是專業(yè)的龍巖網(wǎng)站建設(shè)公司,龍巖接單;提供成都網(wǎng)站設(shè)計(jì)、成都做網(wǎng)站,網(wǎng)頁設(shè)計(jì),網(wǎng)站設(shè)計(jì),建網(wǎng)站,PHP網(wǎng)站建設(shè)等專業(yè)做網(wǎng)站服務(wù);采用PHP框架,可快速的進(jìn)行龍巖網(wǎng)站開發(fā)網(wǎng)頁制作和功能擴(kuò)展;專業(yè)做搜索引擎喜愛的網(wǎng)站,專業(yè)的做網(wǎng)站團(tuán)隊(duì),希望更多企業(yè)前來合作!

1、購買頁面是這樣的

springboot中怎么配置https證書

按照順序選擇

springboot中怎么配置https證書

 然后就去購買成功,我們會看到證書沒有簽發(fā),我們需要去申請

springboot中怎么配置https證書

一般等個(gè)半個(gè)小時(shí)就會審核成功,然后下載tomcat證書,我們解壓證書壓縮包,看到如下信息

springboot中怎么配置https證書

配置application.properties文件【似乎無需加classpath,似乎是要放絕對地址】

server.port=443
server.ssl.key-store=classpath:cert-1541418663536_iunix.vip.pfx
server.ssl.key-store-password=krdg77SD
server.ssl.keyStoreType=PKCS12

密碼值在對應(yīng)的證書包中的文本文件中,上圖中l(wèi)ist.html代碼如下

復(fù)制代碼




    
    Insert title here


用戶列表

    
                         -             -             -                           

springboot中怎么配置https證書

創(chuàng)建一個(gè)Controller 一個(gè)實(shí)體類,代碼分別如下

復(fù)制代碼

/**
 * @Auther: Tang XiaoBai
 * @Date: 2018/11/7 20:24
 * @Description:
 */
@Controller
public class UserController {

    @RequestMapping("/list")
    public String  listUser(Model model) {
        List userList = new ArrayList();
        for (int i = 0; i <10; i++) {
            userList.add(new User(i,"張三"+i,20+i,"中國廣州"));
        }
        model.addAttribute("users", userList);
        return "list";
    }
}

springboot中怎么配置https證書

public class User {
    private Integer id;
    private String name;
    private Integer age;
    private String address;
    //省略get和set方法、構(gòu)造函數(shù)
}

關(guān)于springboot中怎么配置https證書就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。


分享文章:springboot中怎么配置https證書
URL網(wǎng)址:http://weahome.cn/article/jeogdc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部