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
59f5e14b
Commit
59f5e14b
authored
Apr 19, 2016
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5731 from izeye/polish-20160419
* pr/5731: Remove duplicate words
parents
6ebc8d21
61b47079
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 @
59f5e14b
...
...
@@ -175,7 +175,7 @@ public class RestarterTests {
Thread
viaFactory
=
factory
.
newThread
(
runnable
);
// Regular threads will inherit the current thread
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
);
};
};
...
...
spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc
View file @
59f5e14b
...
...
@@ -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-modules= # Comma-separated list of recovery modules.
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])
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 @
59f5e14b
...
...
@@ -88,7 +88,7 @@ public class NarayanaProperties {
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
(
"com.arjuna.ats.internal.jta.recovery.arjunacore.JTATransactionLogXAResourceOrphanFilter"
,
...
...
spring-boot/src/main/java/org/springframework/boot/neo4j/SessionFactoryProvider.java
View file @
59f5e14b
...
...
@@ -20,7 +20,7 @@ import org.neo4j.ogm.config.Configuration;
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.
*
* @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