io.springfox
springfox-swagger2
2.9.2
io.springfox
springfox-swagger-ui
2.9.2
@configuration
@enableswagger2
public class swaggerconfig
@bean
public apiinfo apiinfo()
}
注意加上註解,理解註解含義。注意是否要指定包,以及制定包的路徑怎麼寫service的url如何配置,貌似沒多大關係如果制定的包出錯會報no operations in this spec"
建立viewobject類進行資料的返回
通過model的addattribute(「key」,「value」)方法進行資料的返回
使用教程
外來鍵表的約束完整性
使用text型別進行文章的儲存
會產生的問題:占用太多的空間,外來鍵使用repository無法直接進行建立,或者說不會.
SpringBoot中使用redis實現訊息佇列
org.springframework.boot spring boot starter data redis redis資料庫索引 預設為0 spring.redis.database 0 redis伺服器位址 spring.redis.host 192.168.4.100 redis伺服器連線埠...
springboot使用 async實現非同步執行緒池
工作中經常涉及非同步任務,通常是使用多執行緒技術,比如執行緒池threadpoolexecutor,但使用executors容易產生oom,需要手動使用threadpoolexecutor建立執行緒池 在springboot使用 async 可以實現非同步呼叫,配置執行緒池引數,可以簡單的實現多執行...
springboot使用redis實現從配置到實戰
目錄 springboot通常整合redis,採用的是redistemplate的形式,除了這種形式以外,還有另外一種形式去整合,即採用spring支援的註解進行訪問快取.pom.xml redis.clients jedis 2.7.3 org.springframework.data sprin...