我的demo 用来测试 dao 你可以看下
package com.wuai.company.order.service.impl; import com.wuai.company.order.service.OrdersService; import com.wuai.company.pms.service.PmsService; import com.wuai.company.pms.util.ImportExecl; import com.wuai.company.user.dao.UserDao; import com.wuai.company.user.entity.Response.DetailResponse; import org.junit.Test; import org.junit.runner.RunWith; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.test.context.junit4.SpringRunner; import javax.annotation.Resource; import java.util.List; /** * Created by hyf on 2017/11/3. */ @RunWith(SpringRunner.class) @SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT) public class OrdersServiceImplTest { @Autowired private OrdersService ordersService; @Autowired private PmsService pmsService; @Autowired private UserDao userDao; @Resource private ImportExecl importExecl; @Test public void activePic() throws Exception { ordersService.activePic(); System.out.println(ordersService.activePic()); } }
官网例子很多
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(2)
我的demo 用来测试 dao 你可以看下
官网例子很多