File tree Expand file tree Collapse file tree 2 files changed +0
-13
lines changed
src/main/java/org/woehlke/learn/learnneo4j/configuration/spring Expand file tree Collapse file tree 2 files changed +0
-13
lines changed Original file line number Diff line number Diff line change 337
337
<artifactId >maven-changelog-plugin</artifactId >
338
338
<version >2.3</version >
339
339
</plugin >
340
- <!--
341
- <plugin>
342
- <groupId>org.codehaus.mojo</groupId>
343
- <artifactId>cobertura-maven-plugin</artifactId>
344
- <version>2.7</version>
345
- </plugin>
346
- -->
347
340
<plugin >
348
341
<groupId >org.apache.maven.plugins</groupId >
349
342
<artifactId >maven-project-info-reports-plugin</artifactId >
364
357
<artifactId >findbugs-maven-plugin</artifactId >
365
358
<version >3.0.4</version >
366
359
</plugin >
367
-
368
360
<plugin >
369
361
<groupId >org.apache.maven.plugins</groupId >
370
362
<artifactId >maven-jxr-plugin</artifactId >
388
380
</plugins >
389
381
</pluginManagement >
390
382
391
-
392
383
<plugins >
393
384
<plugin >
394
385
<groupId >org.springframework.boot</groupId >
Original file line number Diff line number Diff line change 7
7
import org .springframework .context .annotation .Configuration ;
8
8
import org .springframework .context .annotation .Primary ;
9
9
import org .springframework .data .jpa .repository .config .EnableJpaRepositories ;
10
- import org .springframework .data .web .config .EnableSpringDataWebSupport ;
11
10
import org .springframework .jdbc .datasource .DataSourceTransactionManager ;
12
- import org .springframework .session .jdbc .config .annotation .web .http .EnableJdbcHttpSession ;
13
11
import org .springframework .session .jdbc .config .annotation .web .http .JdbcHttpSessionConfiguration ;
14
12
import org .springframework .transaction .PlatformTransactionManager ;
15
13
20
18
@ EnableJpaRepositories ({
21
19
"org.woehlke.learn.learnneo4j.model.orm"
22
20
})
23
- @ EnableJdbcHttpSession
24
- @ EnableSpringDataWebSupport
25
21
public class DataSourceConfig extends JdbcHttpSessionConfiguration {
26
22
27
23
@ Bean
You can’t perform that action at this time.
0 commit comments