spring-test

    1熱度

    2回答

    我所有的映射正常工作:如果我設置一個斷點從這個 @RequestMapping(value = "/company/doSomething", method = RequestMethod.GET,produces = MediaType.APPLICATION_JSON_VALUE) @ResponseBody public Boolean myMethod() {

    0熱度

    2回答

    所以,我的工作需要使用註釋依賴注入一些春季測試: @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(loader=AnnotationConfigContextLoader.class) public class BeanTest { @Autowired private SomeService s

    4熱度

    1回答

    我正在使用Spring-Data,並且想讓PersistenceExceptions翻譯成Springs DataAccessExceptions。 我激活彈簧數據與@EnableJpaRepositories,我可以看到,org.springframework.dao.annotation.PersistenceExceptionTranslationPostProcessor#0在啓動期間由S

    1熱度

    1回答

    我有這樣的入口點到uploadfiles,並能正常工作: @RequestMapping(value = "/importarPedidosRepresentante", method = RequestMethod.POST) @ResponseBody public List<ImportacaoPVEResultado> importarPedidoRepresentanteZip(@R

    8熱度

    3回答

    我正面臨着在Spring框架內嘲笑其他服務內部注入服務的問題。這裏是我的代碼: @Service("productService") public class ProductServiceImpl implements ProductService { @Autowired private ClientService clientService; public

    1熱度

    1回答

    是否可以使用MockMvc測試代碼來擊中Web應用程序的實際實例? 我真的很喜歡MockMvc語法,並且在爲測試控制器編寫一段代碼的努力之後,似乎重複使用不同的API來重寫實際上相同測試的努力的重複,這樣我就可以做一個實際的 HTTP請求。 我有一些情況下,我的MockMvc測試通過,但當部署到Web容器時,測試行爲失敗。這通常是一個配置或環境問題,能夠重複相同的測試來清除這些問題會很好。

    1熱度

    1回答

    我有一個測試用例,它爲域對象執行插入操作。現在在domain對象的其中一個字段「deploymentType」中,如果它沒有設置,那麼postgres會有一個默認值,它會將它作爲生產填充。 我想測試這個在我的春天單元測試的默認設置,當我做一個insertType設置爲null和postgres照顧它的插入。 我的測試案例延伸AbstractTransactionalTestNGSpringCont

    1熱度

    1回答

    我有一個測試案例,我有一個@Autowired Foo foo,我只需要注入一次,所以所有的測試方法可以重複使用foo相同的數據。目前發生的情況是,每調用一次@Test方法,foo bean都會被Spring乾淨地重新加載。 是否可以爲整個測試類加載一次這個bean,它是如何完成的?

    0熱度

    1回答

    我在Spring測試新的,我已經成功地根據文件一步一步跑了很多單位的測試,但我有一些問題: 1可以將所有的TestCase使用全球Spring上下文 現在我配置每個TeseCase這樣Spring上下文: @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(.....) @Transactional public cla

    3熱度

    1回答

    我正在使用@Profile Spring批註在嵌入式,獨立和容器管理的數據源之間進行選擇。爲了選擇「嵌入式」我的集成測試的註釋來激活相應的配置文件: @RunWith(SpringJUnit4ClassRunner.class) @ContextConfiguration(loader=AnnotationConfigContextLoader.class, classes={TestConfi