package 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;

import com.using.api.service.GoodsServiceImpl;


@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations="classpath:config/spring.xml")
public class AspectJTest {

@Autowired
GoodsServiceImpl goddsService;

@Test
public void test1(){

}
}

 

 

相关文章:

  • 2021-10-14
  • 2021-12-02
  • 2021-05-24
  • 2021-11-12
  • 2021-06-23
  • 2021-12-09
  • 2022-12-23
  • 2021-10-28
猜你喜欢
  • 2022-12-23
  • 2021-05-08
  • 2021-12-21
  • 2021-12-10
  • 2021-04-27
  • 2021-10-19
  • 2021-08-07
相关资源
相似解决方案