Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
DEMO
spring-boot
Commits
1e6c7cc1
Commit
1e6c7cc1
authored
Oct 01, 2018
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #14621 from izeye
* pr/14621: Polish
parents
2d36a6f9
b079eeff
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
11 deletions
+8
-11
JdbcRepositoriesAutoConfiguration.java
...onfigure/data/jdbc/JdbcRepositoriesAutoConfiguration.java
+2
-3
additional-spring-configuration-metadata.json
...es/META-INF/additional-spring-configuration-metadata.json
+4
-5
ExampleDataJdbcApplication.java
...t/autoconfigure/data/jdbc/ExampleDataJdbcApplication.java
+2
-3
No files found.
spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/data/jdbc/JdbcRepositoriesAutoConfiguration.java
View file @
1e6c7cc1
...
...
@@ -34,9 +34,8 @@ import org.springframework.jdbc.core.namedparam.NamedParameterJdbcOperations;
* {@link EnableAutoConfiguration Auto-configuration} for Spring Data's JDBC Repositories.
* <p>
* Once in effect, the auto-configuration is the equivalent of enabling JDBC repositories
* using the
* {@link org.springframework.data.jdbc.repository.config.EnableJdbcRepositories}
* annotation and providing a {@link JdbcConfiguration} subclass.
* using the {@link EnableJdbcRepositories} annotation and providing a
* {@link JdbcConfiguration} subclass.
*
* @author Andy Wilkinson
* @since 2.1.0
...
...
spring-boot-project/spring-boot-autoconfigure/src/main/resources/META-INF/additional-spring-configuration-metadata.json
View file @
1e6c7cc1
...
...
@@ -516,11 +516,6 @@
"level"
:
"error"
}
},
{
"name"
:
"spring.quartz.scheduler-name"
,
"type"
:
"java.lang.String"
,
"defaultValue"
:
"quartzScheduler"
},
{
"name"
:
"spring.quartz.jdbc.initialize-schema"
,
"defaultValue"
:
"embedded"
...
...
@@ -529,6 +524,10 @@
"name"
:
"spring.quartz.job-store-type"
,
"defaultValue"
:
"memory"
},
{
"name"
:
"spring.quartz.scheduler-name"
,
"defaultValue"
:
"quartzScheduler"
},
{
"name"
:
"spring.rabbitmq.cache.connection.mode"
,
"defaultValue"
:
"channel"
...
...
spring-boot-project/spring-boot-test-autoconfigure/src/test/java/org/springframework/boot/test/autoconfigure/data/jdbc/ExampleDataJdbcApplication.java
View file @
1e6c7cc1
...
...
@@ -33,9 +33,8 @@ public class ExampleDataJdbcApplication {
@Bean
public
DataSource
dataSource
()
{
EmbeddedDatabaseBuilder
builder
=
new
EmbeddedDatabaseBuilder
()
.
generateUniqueName
(
true
).
setType
(
EmbeddedDatabaseType
.
HSQL
);
return
builder
.
build
();
return
new
EmbeddedDatabaseBuilder
().
generateUniqueName
(
true
)
.
setType
(
EmbeddedDatabaseType
.
HSQL
).
build
();
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment