(018)Spring Boot之常用配置

2022-06-14 23:57:08 字數 695 閱讀 3393

web相關:

server.port=8080server.address=127.0.0.1contextpath=/spring.mvc.view.prefix=/web-inf/jsp

spring.mvc.view.suffix=.jsp

spring.freemarker.templateloaderpath=classpath\:/ftl/spring.resources.staticlocations=classpath\:/html/

資料庫相關:

spring.datasource.driverclassname=com.mysql.jdbc.driver

spring.datasource.url=jdbc:mysql://

127.0.0.1:3309/imooc-demo

spring.datasource.username=root

spring.datasource.password=123456

認證相關:

spring.session.store-type=none:引入了spring-session時需要配置,否則啟動報錯,none為關掉配置

security.basic.enabled=false:引入了spring-security時需要配置,否則訪問url缺省會讓登陸,false不登入

springboot 整合mybatis常見錯誤

1 找不到sqlsessionfactory 原因 a mybatis spring boot starter 版本不對,高版本已經不支援自己對inte ce自動注入 b spring boot starter parent 版本不對 2 url載入錯誤 原因 org.springframework...

SpringBoot面試常問的註解

target elementtype.type retention retentionpolicy.runtime documented inherited springbootconfiguration enableautoconfiguration componentscan excludefi...

基於springboot的Dubbo的常規總結

1 引入jar包 com.alibaba.spring.boot dubbo spring boot starter 2.0.0 org.apache.zookeeper zookeeper 3.4.13 view code 2 引入公共的jar包 服務生產者提供的jar包 com.akucun a...