标签:
@RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(locations = { "classpath:/applicationContext.xml" }) @TestExecutionListeners({ DependencyInjectionTestExecutionListener.class }) public class ServiceAttachmentServiceImplTest { @Resource private IServiceAttachmentService serviceAttachmentService; @Test//测试SQL语句 public void testSQL() { List<ServiceAttachment> atts = serviceAttachmentService .getScrollData().getResultList(); }
重点是头部注解
标签:
原文地址:http://www.cnblogs.com/smashed/p/4693173.html