File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
src/main/java/br/com/grupo63/serviceproduction/config Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change 6
6
import com .amazonaws .services .dynamodbv2 .AmazonDynamoDBClient ;
7
7
import org .socialsignin .spring .data .dynamodb .repository .config .EnableDynamoDBRepositories ;
8
8
import org .springframework .beans .factory .annotation .Value ;
9
+ import org .springframework .boot .autoconfigure .EnableAutoConfiguration ;
10
+ import org .springframework .boot .autoconfigure .jdbc .DataSourceAutoConfiguration ;
11
+ import org .springframework .boot .autoconfigure .orm .jpa .HibernateJpaAutoConfiguration ;
9
12
import org .springframework .context .annotation .Bean ;
10
13
import org .springframework .context .annotation .Configuration ;
11
14
import org .springframework .util .StringUtils ;
12
15
13
16
@ Configuration
17
+ @ EnableAutoConfiguration (exclude = {DataSourceAutoConfiguration .class , HibernateJpaAutoConfiguration .class })
14
18
@ EnableDynamoDBRepositories
15
19
(basePackages = "br.com.grupo63.serviceproduction.gateway" )
16
20
public class DynamoDBConfig {
You can’t perform that action at this time.
0 commit comments