|
| 1 | +package com.baomidou.dynamic.datasource.creator.c3p0; |
| 2 | + |
| 3 | +import lombok.Getter; |
| 4 | +import lombok.Setter; |
| 5 | + |
| 6 | + |
| 7 | +/** |
| 8 | + * @author Joy |
| 9 | + */ |
| 10 | +@Getter |
| 11 | +@Setter |
| 12 | +public class C3p0Config { |
| 13 | + private Integer acquireIncrement; |
| 14 | + private Integer acquireRetryAttempts; |
| 15 | + private Integer acquireRetryDelay; |
| 16 | + private Boolean attemptResurrectOnCheckin; |
| 17 | + private Boolean autoCommitOnClose; |
| 18 | + private String automaticTestTable; |
| 19 | + private Boolean breakAfterAcquireFailure; |
| 20 | + private Integer checkoutTimeout; |
| 21 | + private String connectionCustomizerClassName; |
| 22 | + private Integer connectionIsValidTimeout; |
| 23 | + private String connectionTesterClassName; |
| 24 | + private String contextClassLoaderSource; |
| 25 | + private Boolean debugUnreturnedConnectionStackTraces; |
| 26 | + private String factoryClassLocation; |
| 27 | + private Boolean forceIgnoreUnresolvedTransactions; |
| 28 | + private Boolean forceSynchronousCheckins; |
| 29 | + private Integer idleConnectionTestPeriod; |
| 30 | + private Integer initialPoolSize; |
| 31 | + private String markSessionBoundaries; |
| 32 | + private Integer maxAdministrativeTaskTime; |
| 33 | + private Integer maxConnectionAge; |
| 34 | + private Integer maxIdleTime; |
| 35 | + private Integer maxIdleTimeExcessConnections; |
| 36 | + private Integer maxPoolSize; |
| 37 | + private Integer maxStatements; |
| 38 | + private Integer maxStatementsPerConnection; |
| 39 | + private Integer minPoolSize; |
| 40 | + private String overrideDefaultPassword; |
| 41 | + private String overrideDefaultUser; |
| 42 | + private String preferredTestQuery; |
| 43 | + private Boolean privilegeSpawnedThreads; |
| 44 | + private Integer propertyCycle; |
| 45 | + private Integer statementCacheNumDeferredCloseThreads; |
| 46 | + private String taskRunnerFactoryClassName; |
| 47 | + private Boolean testConnectionOnCheckin; |
| 48 | + private Boolean testConnectionOnCheckout; |
| 49 | + private Integer unreturnedConnectionTimeout; |
| 50 | +} |
0 commit comments