學習搭建SpringBoot框架

2021-10-08 14:11:11 字數 1210 閱讀 9366

spring:

datasource:

driver-

class

-name: com.mysql.cj.jdbc.driver

url: jdbc:mysql:

//localhost:

3306

/news?usessl=

false

&characterencoding=utf-

8&servertimezone=asia/shanghai

username: root

password:

thymeleaf:

mode: html

profiles:

active: dev

在template下新建first.html檔案:

<

!doctype html>

"en"

>

"utf-8"

>

第一頁<

/title>

<

/head>

歡迎!<

/body>

<

/html>

在com.zr0726.news包下新建dao、po、service、web包,在service下建立impl包

web包下建立indexcontroller類:

package com.zr0726.news.web;

import org.springframework.stereotype.controller;

@controller

public

class

indexcontroller

}

執行專案:

在瀏覽器開啟localhost的8080埠:

說明專案建立成功,接下來需要新建資料庫,為之後的學習與專案做準備。

從零搭建自己的SpringBoot後台框架 六

io.springfox springfox swagger2 2.4.0 io.springfox springfox swagger ui 2.4.0 複製 在資料夾configurer中建立swaggerconfigurer package com.example.demo.core.conf...

SpringBoot環境搭建

1.新增springboot的起步依賴 springboot 要求,專案要繼承 springboot 的起步依賴 spring boot starter parent org.springframework.boot spring boot starter parent 2.1.6.release ...

springboot專案搭建

一 利用官網生成 二 eclipse建立 1.eclipse 安裝spring boot外掛程式 elipse help install new software add 2.新增更新位址 包含spring boot的外掛程式進行安裝 3.選擇file new project spring init...