一·junit的使用
1.1 新增junit的依賴
<dependency
>
<
groupid
>org.springframework.boot
groupid
>
<
artifactid
>spring-boot-starter-test
artifactid
>
<
scope
>test
scope
>
dependency
>
1.2 基礎使用
@runwith(springrunner.class)@springboottest
public
class
girlservicetest
}
run as ->junit test 後可在控制台檢視執行結果
1.3 註解說明
1.4 斷言
斷言就是判斷是否和期望值相符合
1.5 web模擬測試
使用mockmvc對web進行測試
@runwith(springrunner.class)@springboottest
@autoconfiguremockmvc
public
class
girlcontrollertest
}
@autoconfiguremockmvc:配合上@autowired就可以自動的註冊所有新增@controller或者@restcontroller的路由的mockmvc了
springboot學習小記 3
1。資源檔案屬性配置 把資源檔案對映到乙個bean src目錄下的資源檔案resource.properties內容為 com.test.properties.name aaa com.test.properties.address bbb com.test.properties.ccc 建立與資源...
spring boot 資料訪問3 JPA
1 匯入包 org.springframework.boot spring boot starter data jpa spring datasource username root password 123456 url jdbc mysql driver class name com.mysql...
Spring Boot入門3 AOP處理請求
在spring boot中,如何用aop實現 呢?首先加入依賴關係 org.springframework.boot spring boot starter aop 希望截攔如下controller restcontroller public class mycontroller 首先要建立乙個攔截...