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
61b47079
Commit
61b47079
authored
Apr 19, 2016
by
Johnny Lim
Committed by
Stephane Nicoll
Apr 19, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove duplicate words
Closes gh-5731
parent
6ebc8d21
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
+4
-4
RestarterTests.java
...springframework/boot/devtools/restart/RestarterTests.java
+1
-1
appendix-application-properties.adoc
...cs/src/main/asciidoc/appendix-application-properties.adoc
+1
-1
NarayanaProperties.java
...springframework/boot/jta/narayana/NarayanaProperties.java
+1
-1
SessionFactoryProvider.java
...rg/springframework/boot/neo4j/SessionFactoryProvider.java
+1
-1
No files found.
spring-boot-devtools/src/test/java/org/springframework/boot/devtools/restart/RestarterTests.java
View file @
61b47079
...
@@ -175,7 +175,7 @@ public class RestarterTests {
...
@@ -175,7 +175,7 @@ public class RestarterTests {
Thread
viaFactory
=
factory
.
newThread
(
runnable
);
Thread
viaFactory
=
factory
.
newThread
(
runnable
);
// Regular threads will inherit the current thread
// Regular threads will inherit the current thread
assertThat
(
regular
.
getContextClassLoader
()).
isEqualTo
(
contextClassLoader
);
assertThat
(
regular
.
getContextClassLoader
()).
isEqualTo
(
contextClassLoader
);
// Factory threads should
should
inherit from the initial thread
// Factory threads should inherit from the initial thread
assertThat
(
viaFactory
.
getContextClassLoader
()).
isEqualTo
(
parentLoader
);
assertThat
(
viaFactory
.
getContextClassLoader
()).
isEqualTo
(
parentLoader
);
};
};
};
};
...
...
spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc
View file @
61b47079
...
@@ -754,7 +754,7 @@ content into your application; rather pick only the properties that you need.
...
@@ -754,7 +754,7 @@ content into your application; rather pick only the properties that you need.
spring.jta.narayana.recovery-jms-user= # JMS username to be used by recovery manager.
spring.jta.narayana.recovery-jms-user= # JMS username to be used by recovery manager.
spring.jta.narayana.recovery-modules= # Comma-separated list of recovery modules.
spring.jta.narayana.recovery-modules= # Comma-separated list of recovery modules.
spring.jta.narayana.transaction-manager-id=1 # Unique transaction manager id.
spring.jta.narayana.transaction-manager-id=1 # Unique transaction manager id.
spring.jta.narayana.xa-resource-orphan-filters= # Comma-separated list of o
f o
rphan filters.
spring.jta.narayana.xa-resource-orphan-filters= # Comma-separated list of orphan filters.
# EMBEDDED MONGODB ({sc-spring-boot-autoconfigure}/mongo/embedded/EmbeddedMongoProperties.{sc-ext}[EmbeddedMongoProperties])
# EMBEDDED MONGODB ({sc-spring-boot-autoconfigure}/mongo/embedded/EmbeddedMongoProperties.{sc-ext}[EmbeddedMongoProperties])
spring.mongodb.embedded.features=SYNC_DELAY # Comma-separated list of features to enable.
spring.mongodb.embedded.features=SYNC_DELAY # Comma-separated list of features to enable.
...
...
spring-boot/src/main/java/org/springframework/boot/jta/narayana/NarayanaProperties.java
View file @
61b47079
...
@@ -88,7 +88,7 @@ public class NarayanaProperties {
...
@@ -88,7 +88,7 @@ public class NarayanaProperties {
private
String
recoveryJmsPass
=
null
;
private
String
recoveryJmsPass
=
null
;
/**
/**
* Comma-separated list of o
f o
rphan filters.
* Comma-separated list of orphan filters.
*/
*/
private
List
<
String
>
xaResourceOrphanFilters
=
Arrays
.
asList
(
private
List
<
String
>
xaResourceOrphanFilters
=
Arrays
.
asList
(
"com.arjuna.ats.internal.jta.recovery.arjunacore.JTATransactionLogXAResourceOrphanFilter"
,
"com.arjuna.ats.internal.jta.recovery.arjunacore.JTATransactionLogXAResourceOrphanFilter"
,
...
...
spring-boot/src/main/java/org/springframework/boot/neo4j/SessionFactoryProvider.java
View file @
61b47079
...
@@ -20,7 +20,7 @@ import org.neo4j.ogm.config.Configuration;
...
@@ -20,7 +20,7 @@ import org.neo4j.ogm.config.Configuration;
import
org.neo4j.ogm.session.SessionFactory
;
import
org.neo4j.ogm.session.SessionFactory
;
/**
/**
* Provide a
a
Neo4j {@link SessionFactory} instance based on a configurable
* Provide a Neo4j {@link SessionFactory} instance based on a configurable
* {@link Configuration} and custom packages to scan.
* {@link Configuration} and custom packages to scan.
*
*
* @author Stephane Nicoll
* @author Stephane Nicoll
...
...
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