接著框架構建來做
在自動生成的**中可以看到好多注釋,這些我們可以不需要生成可以不要:
在mbg.xml中加入如下**
二
e.emp_id, e.emp_name, e.gender, e.email, e.d_id,d.dept_id,d.dept_name
select
distinct
from employee e
left join dept d on e.'emp_id'=d.'dept_id'
order by $
select
from employee e
left join dept d on e.'emp_id'=d.'dept_id'
where emp_id = #
2.2.進行測試
新建測試類databasetest,將資料庫調通
package crud.test;
import org.junit.test;
import org.junit.runner.runwith;
import org.springframework.beans.factory.annotation.autowired;
import org.springframework.test.context.contextconfiguration;
import org.springframework.test.context.junit4.springjunit4classrunner;
/** * 測試dao層的工作
* * @author liuxin
*推薦spring專案來使用spring的單元測試,可以自動注入我們要使用的元件,來代替testcrud()中注釋掉的1,2 步
*1匯入springtest模組,在pom檔案新增相關依賴,在類上加入註解
*2contextconfiguration指定spring位置
*3.runwith註解來說明哪個單元測試來執行
*4.直接autowired
*/@runwith(springjunit4classrunner.class)
public class databasetest
}在pom中新增:
org.springframework
spring-test
4.3.7.release
test
3.執行junittest,結果出錯了
解決:檢查發現伺服器沒開,但開了還不對,然後去看控制台,報這個錯
org.springframework.beans.factory.nosuchbeandefinitionexception(未解決)
SPA專案開發CRUD 表單驗證
spa實現crud可以使用elementui的元件來實現。總 搜尋 新增編輯 刪除取消 儲存所有的引數 export default editformvisible false,title editform rules title 在表單中新增乙個屬性然後定義即可 rules title 效果圖 搜...
SPA專案開發之CRUD 表單驗證
動態樹 資料 分頁 中,我們實現了左側導航選單 動態樹 資料 以及 分頁。今天我們在上篇的基礎上繼續完善功能,這次我們要完成的功能是實現對文章的中增刪改查,其中我們要對資料進行驗證 表單驗證 接下來進入正題。form元件提供了表單驗證的功能,只需要通過 rules 屬性傳入約定的驗證規則,並將for...
SPA專案開發之CRUD 表單驗證
我們在進行crud時最好先把前台介面做好,並且做好表單驗證 元件 搜尋 新增編輯 刪除取消 儲存用vue進行開發我們要對元件進行定義 表單驗證 form元件提供了表單驗證的功能,只需要通過 rules 屬性傳入約定的驗證規則,並將form item的prop屬性設定為需校驗的欄位名即可 在上使用特殊...