我正在尝试学习MongoDB,同时使用Spring框架编写一个简单的REST应用程序。
我有一个简单的模型:
@Document
public class Permission extends documentBase{
@Indexed(unique = true)
private String name;
public Permission(String name) {
this.name = name;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
然后我有一个简单的DAO:
@Repository
@Transactional
@Profile({"production","repositoryTest","mongoIntegrationTest"})
public class DaoImpl implements DAO {
@Autowired
protected MongoTemplate mongoTemplate;
public <T> T addObject(T object) {
mongoTemplate.insert(object);
return object;
}
我有我的集成测试:
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = { "classpath:mvc-dispatcher-servlet.xml", classpath:IntegrationContext.xml"},loader = TestXmlContextLoader.class)
@ActiveProfiles("mongoIntegrationTest")
public class RepositoryIntegrationTest extends AccountTestBase{
@Autowired DAO repository;
@Autowired WebApplicationContext wac;
@Test
public void AddPermission() {
Permission permission_1 = new Permission("test");
Permission permission_2 = new Permission("test");
repository.addObject(permission_1);
repository.addObject(permission_2);
}
}
我的配置:
<!-- MongoDB host -->
<mongo:mongo host="${mongo.host.name}" port="${mongo.host.port}"/>
<!-- Template for performing MongoDB operations -->
<bean id="mongoTemplate" class="org.springframework.data.mongodb.core.MongoTemplate"
c:mongo-ref="mongo" c:databaseName="${mongo.db.name}"/>
我希望在添加“permission_2”时,它们将是MongoDB抛出的异常,它将由Spring翻译,并在DAO中作为DataAccessException捕获。
查看来自MongoDb的日志文件我可以看到抛出重复的异常,但它永远不会到达我的DAO。
所以,我想我做错了什么,但是此刻,我对自己的错误视而不见。
// LG
答案 0 :(得分:4)
确保将WriteConcern
的{{1}}配置为非默认值(例如MongoTemplate
)。默认情况下,MongoDB处于发生火警和忘记模式,并且通常不会对索引冲突或服务器错误抛出异常。
答案 1 :(得分:1)
仍在努力解决这个问题。 最后,我成功地完成了翻译工作。 MongoDb抛出一个异常,转换为Spring Data异常。
现在我遇到了另一个问题。
上面显示的我的DAO还有以下代码:
@ExceptionHandler(DataAccessException.class)
public void handleDataAccessException(DataAccessException ex) {
// For debug only
DataAccessException test = ex;
test.printStackTrace();
}
我期待这段代码能够捕获抛出的异常,但事实并非如此。
为什么不呢?
//拉塞