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
c38bb965
Commit
c38bb965
authored
Apr 11, 2016
by
Stephane Nicoll
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Polish
parent
82207ffc
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
99 additions
and
99 deletions
+99
-99
LiquibaseProperties.java
...ork/boot/autoconfigure/liquibase/LiquibaseProperties.java
+1
-1
JpaProperties.java
...ngframework/boot/autoconfigure/orm/jpa/JpaProperties.java
+2
-0
appendix-application-properties.adoc
...cs/src/main/asciidoc/appendix-application-properties.adoc
+83
-69
NarayanaProperties.java
...springframework/boot/jta/narayana/NarayanaProperties.java
+13
-29
No files found.
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/liquibase/LiquibaseProperties.java
View file @
c38bb965
...
...
@@ -92,7 +92,7 @@ public class LiquibaseProperties {
private
Map
<
String
,
String
>
parameters
;
/**
*
The f
ile to which rollback SQL will be written when an update is performed.
*
F
ile to which rollback SQL will be written when an update is performed.
*/
private
File
rollbackFile
;
...
...
spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/orm/jpa/JpaProperties.java
View file @
c38bb965
...
...
@@ -24,6 +24,7 @@ import javax.sql.DataSource;
import
org.springframework.boot.autoconfigure.jdbc.EmbeddedDatabaseConnection
;
import
org.springframework.boot.context.properties.ConfigurationProperties
;
import
org.springframework.boot.context.properties.DeprecatedConfigurationProperty
;
import
org.springframework.boot.context.properties.NestedConfigurationProperty
;
import
org.springframework.orm.jpa.vendor.Database
;
import
org.springframework.util.StringUtils
;
...
...
@@ -145,6 +146,7 @@ public class JpaProperties {
*/
private
Boolean
useNewIdGeneratorMappings
;
@NestedConfigurationProperty
private
final
Naming
naming
=
new
Naming
();
@Deprecated
...
...
spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc
View file @
c38bb965
This diff is collapsed.
Click to expand it.
spring-boot/src/main/java/org/springframework/boot/jta/narayana/NarayanaProperties.java
View file @
c38bb965
...
...
@@ -17,6 +17,7 @@
package
org
.
springframework
.
boot
.
jta
.
narayana
;
import
java.util.Arrays
;
import
java.util.Collections
;
import
java.util.List
;
import
org.springframework.boot.context.properties.ConfigurationProperties
;
...
...
@@ -42,85 +43,68 @@ public class NarayanaProperties {
private
String
logDir
;
/**
* Unique transaction manager id.
Default: 1.
* Unique transaction manager id.
*/
private
String
transactionManagerId
=
"1"
;
/**
* Enable one phase commit optimisation.
Default: <code>true</code>.
* Enable one phase commit optimisation.
*/
private
boolean
onePhaseCommit
=
true
;
/**
* Transaction timeout in seconds.
Default: <code>60</code>.
* Transaction timeout in seconds.
*/
private
int
defaultTimeout
=
60
;
/**
* Interval in which periodic recovery scans are performed in seconds. Default:
* <code>120</code>
* Interval in which periodic recovery scans are performed in seconds.
*/
private
int
periodicRecoveryPeriod
=
120
;
/**
* Back off period between first and second phases of the recovery scan in seconds.
* Default: <code>10</code>
*/
private
int
recoveryBackoffPeriod
=
10
;
/**
* Database username to be used by recovery manager.
Default: <code>null</code>
* Database username to be used by recovery manager.
*/
private
String
recoveryDbUser
=
null
;
/**
* Database password to be used by recovery manager.
Default: <code>null</code>
* Database password to be used by recovery manager.
*/
private
String
recoveryDbPass
=
null
;
/**
* JMS username to be used by recovery manager.
Default: <code>null</code>
* JMS username to be used by recovery manager.
*/
private
String
recoveryJmsUser
=
null
;
/**
* JMS password to be used by recovery manager.
Default: <code>null</code>
* JMS password to be used by recovery manager.
*/
private
String
recoveryJmsPass
=
null
;
/**
* List of orphan filters. Default:
* <ul>
* <li>com.arjuna.ats.internal.jta.recovery.arjunacore.
* JTATransactionLogXAResourceOrphanFilter</li>
* <li>
* com.arjuna.ats.internal.jta.recovery.arjunacore.JTANodeNameXAResourceOrphanFilter
* </li>
* </ul>
* Comma-separated list of of orphan filters.
*/
private
List
<
String
>
xaResourceOrphanFilters
=
Arrays
.
asList
(
"com.arjuna.ats.internal.jta.recovery.arjunacore.JTATransactionLogXAResourceOrphanFilter"
,
"com.arjuna.ats.internal.jta.recovery.arjunacore.JTANodeNameXAResourceOrphanFilter"
);
/**
* List of recovery modules. Default:
* <ul>
* <li>com.arjuna.ats.internal.arjuna.recovery.AtomicActionRecoveryModule</li>
* <li>com.arjuna.ats.internal.jta.recovery.arjunacore.XARecoveryModule</li>
* </ul>
* Comma-separated list of recovery modules.
*/
private
List
<
String
>
recoveryModules
=
Arrays
.
asList
(
"com.arjuna.ats.internal.arjuna.recovery.AtomicActionRecoveryModule"
,
"com.arjuna.ats.internal.jta.recovery.arjunacore.XARecoveryModule"
);
/**
* List of expiry scanners. Default:
* <ul>
* <li>com.arjuna.ats.internal.arjuna.recovery.ExpiredTransactionStatusManagerScanner
* </li>
* </ul>
* Comma-separated list of expiry scanners.
*/
private
List
<
String
>
expiryScanners
=
Arrays
.
as
List
(
private
List
<
String
>
expiryScanners
=
Collections
.
singleton
List
(
"com.arjuna.ats.internal.arjuna.recovery.ExpiredTransactionStatusManagerScanner"
);
public
String
getLogDir
()
{
...
...
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