1 **
 2  * Spring测试activiti配置是否正常
 3  * <p>Title: SpringActivitiTest</p>
 4  * <p>Description: </p>
 5  * <p>School: qiqihar university</p> 
 6  * @author    BQ
 7  * @date    2017年9月9日上午9:40:57
 8  * @version 1.0
 9  */
10 @Transactional
11 @RunWith(SpringJUnit4ClassRunner.class)
12 @ContextConfiguration(locations = { "classpath:spring/applicationContext-*.xml" })
13 public class SpringActivitiTest {
14 
15     @Autowired
16     public RepositoryService repositoryService;
17 
18     @Test
19     public void testBuilder() {
20 
21     }
22 
23 }

 

相关文章:

  • 2021-11-17
  • 2021-06-05
  • 2021-12-22
  • 2021-11-08
  • 2022-12-23
  • 2022-12-23
  • 2021-12-12
  • 2021-06-17
猜你喜欢
  • 2021-10-07
  • 2021-10-20
  • 2021-04-20
  • 2021-08-11
  • 2021-06-13
  • 2021-07-26
相关资源
相似解决方案