Commit b2acda5b authored by terrymanu's avatar terrymanu
Browse files

refactor ShardingProperties

parent 66bf1657
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@
 * </p>
 */

package io.shardingsphere.core.constant;
package io.shardingsphere.core.constant.properties;

import com.google.common.base.Joiner;
import com.google.common.base.Strings;
+2 −1
Original line number Diff line number Diff line
@@ -15,8 +15,9 @@
 * </p>
 */

package io.shardingsphere.core.constant;
package io.shardingsphere.core.constant.properties;

import io.shardingsphere.core.constant.ConnectionMode;
import io.shardingsphere.core.constant.transaction.TransactionType;
import lombok.Getter;
import lombok.RequiredArgsConstructor;
+1 −0
Original line number Diff line number Diff line
@@ -17,6 +17,7 @@

package io.shardingsphere.core.constant;

import io.shardingsphere.core.constant.properties.ShardingPropertiesConstant;
import org.junit.Test;

import static org.hamcrest.CoreMatchers.is;
+2 −0
Original line number Diff line number Diff line
@@ -17,6 +17,8 @@

package io.shardingsphere.core.constant;

import io.shardingsphere.core.constant.properties.ShardingProperties;
import io.shardingsphere.core.constant.properties.ShardingPropertiesConstant;
import org.junit.Before;
import org.junit.Test;

+2 −2
Original line number Diff line number Diff line
@@ -18,8 +18,8 @@
package io.shardingsphere.jdbc.spring.boot.type;

import io.shardingsphere.core.api.ConfigMapContext;
import io.shardingsphere.core.constant.ShardingProperties;
import io.shardingsphere.core.constant.ShardingPropertiesConstant;
import io.shardingsphere.core.constant.properties.ShardingProperties;
import io.shardingsphere.core.constant.properties.ShardingPropertiesConstant;
import io.shardingsphere.core.jdbc.core.ShardingContext;
import io.shardingsphere.core.jdbc.core.datasource.ShardingDataSource;
import io.shardingsphere.jdbc.spring.boot.util.EmbedTestingServer;
Loading