org.springframework.data.mongodb.core.mapping.event.ValidatingMongoEventListener Java Examples

The following examples show how to use org.springframework.data.mongodb.core.mapping.event.ValidatingMongoEventListener. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: CloudDatabaseConfiguration.java    From java-microservices-examples with Apache License 2.0 4 votes vote down vote up
@Bean
public ValidatingMongoEventListener validatingMongoEventListener() {
    return new ValidatingMongoEventListener(validator());
}
 
Example #2
Source File: DatabaseConfiguration.java    From java-microservices-examples with Apache License 2.0 4 votes vote down vote up
@Bean
public ValidatingMongoEventListener validatingMongoEventListener() {
    return new ValidatingMongoEventListener(validator());
}
 
Example #3
Source File: CloudDatabaseConfiguration.java    From okta-jhipster-microservices-oauth-example with Apache License 2.0 4 votes vote down vote up
@Bean
public ValidatingMongoEventListener validatingMongoEventListener() {
    return new ValidatingMongoEventListener(validator());
}
 
Example #4
Source File: DatabaseConfiguration.java    From okta-jhipster-microservices-oauth-example with Apache License 2.0 4 votes vote down vote up
@Bean
public ValidatingMongoEventListener validatingMongoEventListener() {
    return new ValidatingMongoEventListener(validator());
}
 
Example #5
Source File: CloudDatabaseConfiguration.java    From e-commerce-microservice with Apache License 2.0 4 votes vote down vote up
@Bean
public ValidatingMongoEventListener validatingMongoEventListener() {
    return new ValidatingMongoEventListener(validator());
}
 
Example #6
Source File: DatabaseConfiguration.java    From e-commerce-microservice with Apache License 2.0 4 votes vote down vote up
@Bean
public ValidatingMongoEventListener validatingMongoEventListener() {
    return new ValidatingMongoEventListener(validator());
}
 
Example #7
Source File: CloudDatabaseConfiguration.java    From jhipster-microservices-example with Apache License 2.0 4 votes vote down vote up
@Bean
public ValidatingMongoEventListener validatingMongoEventListener() {
    return new ValidatingMongoEventListener(validator());
}
 
Example #8
Source File: DatabaseConfiguration.java    From jhipster-microservices-example with Apache License 2.0 4 votes vote down vote up
@Bean
public ValidatingMongoEventListener validatingMongoEventListener() {
    return new ValidatingMongoEventListener(validator());
}
 
Example #9
Source File: DatabaseConfiguration.java    From spring-boot-completablefuture with MIT License 4 votes vote down vote up
@Bean
public ValidatingMongoEventListener validatingMongoEventListener() {
    return new ValidatingMongoEventListener(validator());
}
 
Example #10
Source File: ValidationConfiguration.java    From carts with Apache License 2.0 4 votes vote down vote up
@Bean
public ValidatingMongoEventListener validatingMongoEventListener() {
    return new ValidatingMongoEventListener(validator());
}
 
Example #11
Source File: _CloudMongoDbConfiguration.java    From jhipster-ribbon-hystrix with GNU General Public License v3.0 4 votes vote down vote up
@Bean
public ValidatingMongoEventListener validatingMongoEventListener() {
    return new ValidatingMongoEventListener(validator());
}
 
Example #12
Source File: _DatabaseConfiguration.java    From jhipster-ribbon-hystrix with GNU General Public License v3.0 4 votes vote down vote up
@Bean
public ValidatingMongoEventListener validatingMongoEventListener() {
    return new ValidatingMongoEventListener(validator());
}