springboot相關配置

2021-10-06 03:30:49 字數 1567 閱讀 4604

配置了埠號,訪問路徑,配置資料庫相關資訊,配置了mybatis,配置檔案上傳,配置thymeleaf,分頁

#配置埠號

server.port=

8081

#配置訪問路徑

server.servlet.context-path=

/mybooksys

#配置資料庫相關資訊

spring.datasource.driver-

class

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

spring.datasource.url=jdbc:mysql:

//localhost:

3306

/bookdb?servertimezone=asia/shanghai&useunicode=

true

&characterencoding\

=utf8

spring.datasource.username=root

spring.datasource.password=root

#spring配置mybatis

#起別名

mybatis.type-aliases-

package

=#配置檔案上傳

#檔案上傳路徑

(自定義屬性)

web.file-path=e:

/upload/images

#單檔案大小

spring.servlet.multipart.max-file-size=

10mb

#總檔案大小

spring.servlet.multipart.max-request-size=

100mb

#配置靜態資源訪問路徑

spring.mvc.

static

-path-pattern=

/**spring.resources.static-locations=classpath:/static/,classpath:/public/,classpath:/resources,file:$

#thymeleaf的預設值,這裡將他顯示展示

#字首spring.thymeleaf.prefix=classpath:/templates/

#字尾spring.thymeleaf.suffix=.html

spring.thymeleaf.mode=html5

spring.thymeleaf.encoding=utf-8

#預設值是true 有快取 ,置為false ,實時重新整理

spring.thymeleaf.cache=false

#分頁配置

pagehelper.helper-dialect=mysql

pagehelper.params=count=countsql

pagehelper.reasonable=true

pagehelper.support-methods-arguments=true

#自定義pagesize

page.pagesize=4

SpringBoot容器相關配置

修改埠號 server.port 8081 修改上下文路徑 server.servlet.context path leeue 修改tomcat 編碼規則 server.tomcat.uri encoding utf 82.啟動容器配置 1 預設是tomcat啟動 2 使用jetty啟動 pom.x...

SpringBoot 配置檔案相關

yml格式如下 1 要縮排對齊 2 屬性欄位為key value鍵值對 具體格式 name1 value1 name2 value23 物件及map表示方式 兩種 方式1 user name username age userage phone userphone 方式2 user 4 集合表示方式...

Spring Boot 外部配置相關面試題

springboot 對外部配置提供了支援,允許我們在不同環境中執行相同的應用。我們可以使用 properties 檔案 yaml 檔案 環境變數 系統引數和命令列選項引數來宣告配置屬性。然後我們可以通過 value 這個通過 configurationproperties 繫結的物件的註解或者實現...