1.訪問時404,
1)當你沒有在配置檔案中配置專案名時直接 http://localhost:8080/url直接進行訪問
2.使用mybatis generator生成時,找不到類
tk.mybatis
4.0.3
3.使用tk外掛程式時,使用autowried報錯:spring boot中 clould not autowire. no beans of 'user
然後在啟動類中註明map的包路徑
spring boot與vue結合問題
vue打包,注意修改config 下 assetspublicpath: './',
打包後如果springboot配置了程式 上下文,即要在index.html中使用th:src@,表示 自動獲取程式上下文
學習SpringBoot遇到的坑
使用管理員許可權啟動cmd,結束占用該埠的程式 搜尋占用8080埠的程式 netstat aon findstr 8080 檢視占用埠的程式資訊,6036為占用埠程式的pid tasklist findstr 6036 結束占用埠的程式 taskkill pid 6036 f org.springf...
python遇到的錯誤
1,關於break break是終止最近的迴圈。1 for i in range 10 2if i 2 3break 4printi5 以上,只列印0和1 2,在py2中,range函式返回乙個列表 3,enumerate 利用enumerate 函式,可以在每次迴圈中同時得到下標和元素 s abc...
Spring Boot的錯誤處理
方法一 spring boot 將所有的錯誤預設對映到 error,實現errorcontroller controller value error public class baseerrorcontroller implements errorcontroller public string e...