14 changed files with 180 additions and 149 deletions
-
13.idea/libraries/Maven__com_alibaba_fastjson_1_2_47.xml
-
13.idea/libraries/Maven__com_jcraft_jsch_0_1_54.xml
-
13.idea/libraries/Maven__org_eclipse_jgit_org_eclipse_jgit_5_1_3_201810200350_r.xml
-
1.idea/xm-backend.iml
-
16xm-bootstrap/pom.xml
-
3xm-bootstrap/src/main/java/com/xm/XmApplication.java
-
42xm-bootstrap/src/main/resources/application-dev.properties
-
41xm-bootstrap/src/main/resources/application-m1prod.properties
-
50xm-bootstrap/src/main/resources/mybatis/mybatis-config.xml
-
48xm-bootstrap/xm-bootstrap.iml
-
11xm-core/pom.xml
-
37xm-core/src/main/resources/application-dev.properties
-
3xm-core/src/test/java/com/xm/XmApplication.java
-
38xm-core/xm-core.iml
@ -1,13 +0,0 @@ |
|||||
<component name="libraryTable"> |
|
||||
<library name="Maven: com.alibaba:fastjson:1.2.47"> |
|
||||
<CLASSES> |
|
||||
<root url="jar://$MAVEN_REPOSITORY$/com/alibaba/fastjson/1.2.47/fastjson-1.2.47.jar!/" /> |
|
||||
</CLASSES> |
|
||||
<JAVADOC> |
|
||||
<root url="jar://$MAVEN_REPOSITORY$/com/alibaba/fastjson/1.2.47/fastjson-1.2.47-javadoc.jar!/" /> |
|
||||
</JAVADOC> |
|
||||
<SOURCES> |
|
||||
<root url="jar://$MAVEN_REPOSITORY$/com/alibaba/fastjson/1.2.47/fastjson-1.2.47-sources.jar!/" /> |
|
||||
</SOURCES> |
|
||||
</library> |
|
||||
</component> |
|
||||
@ -1,13 +0,0 @@ |
|||||
<component name="libraryTable"> |
|
||||
<library name="Maven: com.jcraft:jsch:0.1.54"> |
|
||||
<CLASSES> |
|
||||
<root url="jar://$MAVEN_REPOSITORY$/com/jcraft/jsch/0.1.54/jsch-0.1.54.jar!/" /> |
|
||||
</CLASSES> |
|
||||
<JAVADOC> |
|
||||
<root url="jar://$MAVEN_REPOSITORY$/com/jcraft/jsch/0.1.54/jsch-0.1.54-javadoc.jar!/" /> |
|
||||
</JAVADOC> |
|
||||
<SOURCES> |
|
||||
<root url="jar://$MAVEN_REPOSITORY$/com/jcraft/jsch/0.1.54/jsch-0.1.54-sources.jar!/" /> |
|
||||
</SOURCES> |
|
||||
</library> |
|
||||
</component> |
|
||||
@ -1,13 +0,0 @@ |
|||||
<component name="libraryTable"> |
|
||||
<library name="Maven: org.eclipse.jgit:org.eclipse.jgit:5.1.3.201810200350-r"> |
|
||||
<CLASSES> |
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/eclipse/jgit/org.eclipse.jgit/5.1.3.201810200350-r/org.eclipse.jgit-5.1.3.201810200350-r.jar!/" /> |
|
||||
</CLASSES> |
|
||||
<JAVADOC> |
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/eclipse/jgit/org.eclipse.jgit/5.1.3.201810200350-r/org.eclipse.jgit-5.1.3.201810200350-r-javadoc.jar!/" /> |
|
||||
</JAVADOC> |
|
||||
<SOURCES> |
|
||||
<root url="jar://$MAVEN_REPOSITORY$/org/eclipse/jgit/org.eclipse.jgit/5.1.3.201810200350-r/org.eclipse.jgit-5.1.3.201810200350-r-sources.jar!/" /> |
|
||||
</SOURCES> |
|
||||
</library> |
|
||||
</component> |
|
||||
@ -1,50 +0,0 @@ |
|||||
<?xml version="1.0" encoding="UTF-8"?> |
|
||||
<!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD SQL Map Config 3.0//EN" |
|
||||
"http://mybatis.org/dtd/mybatis-3-config.dtd"> |
|
||||
<configuration> |
|
||||
<settings> |
|
||||
<setting name="cacheEnabled" value="true" /><!-- 全局映射器启用缓存 --> |
|
||||
<setting name="useGeneratedKeys" value="true" /> |
|
||||
<setting name="defaultExecutorType" value="REUSE" /> |
|
||||
<setting name="mapUnderscoreToCamelCase" value="true" /> |
|
||||
<setting name="callSettersOnNulls" value="true" /> |
|
||||
<setting name="jdbcTypeForNull" value="NULL"/> |
|
||||
</settings> |
|
||||
<typeHandlers> |
|
||||
<typeHandler javaType="String" jdbcType="CLOB" handler="org.apache.ibatis.type.ClobTypeHandler"/> |
|
||||
<!--<typeHandler javaType="oracle.sql.CLOB" jdbcType="CLOB" handler="org.apache.ibatis.type.ClobTypeHandler"/>--> |
|
||||
<!--<typeHandler javaType="oracle.sql.TIMESTAMP" jdbcType="TIMESTAMP" handler="org.apache.ibatis.type.DateTypeHandler"/>--> |
|
||||
</typeHandlers> |
|
||||
<objectWrapperFactory type="com.mdp.mybatis.MapWrapperFactory"></objectWrapperFactory> |
|
||||
<plugins> |
|
||||
<!-- com.github.pagehelper为PageHelper类所在包名 --> |
|
||||
<plugin interceptor="com.github.pagehelper.PageInterceptor"> |
|
||||
<!-- 4.0.0以后版本可以不设置该参数--> |
|
||||
<!--<property name="dialect" value="oracle"/> --> |
|
||||
<!-- 该参数默认为false --> |
|
||||
<!-- 设置为true时,会将RowBounds第一个参数offset当成pageNum页码使用 --> |
|
||||
<!-- 和startPage中的pageNum效果一样--> |
|
||||
<property name="offsetAsPageNum" value="true"/> |
|
||||
<!-- 该参数默认为false --> |
|
||||
<!-- 设置为true时,使用RowBounds分页会进行count查询 --> |
|
||||
<property name="rowBoundsWithCount" value="true"/> |
|
||||
<!-- 设置为true时,如果pageSize=0或者RowBounds.limit = 0就会查询出全部的结果 --> |
|
||||
<!-- (相当于没有执行分页查询,但是返回结果仍然是Page类型)--> |
|
||||
<property name="pageSizeZero" value="true"/> |
|
||||
<!-- 3.3.0版本可用 - 分页参数合理化,默认false禁用 --> |
|
||||
<!-- 启用合理化时,如果pageNum<1会查询第一页,如果pageNum>pages会查询最后一页 --> |
|
||||
<!-- 禁用合理化时,如果pageNum<1或pageNum>pages会返回空数据 --> |
|
||||
<property name="reasonable" value="true"/> |
|
||||
<!-- 3.5.0版本可用 - 为了支持startPage(Object params)方法 --> |
|
||||
<!-- 增加了一个`params`参数来配置参数映射,用于从Map或ServletRequest中取值 --> |
|
||||
<!-- 可以配置pageNum,pageSize,count,pageSizeZero,reasonable,orderBy,不配置映射的用默认值 --> |
|
||||
<!-- 不理解该含义的前提下,不要随便复制该配置 --> |
|
||||
<!-- <property name="params" value="pageNum=currentPage;pageSize=limit;"/> --> |
|
||||
<!-- 支持通过Mapper接口参数来传递分页参数 --> |
|
||||
<!-- <property name="supportMethodsArguments" value="true"/>--> |
|
||||
<!-- always总是返回PageInfo类型,check检查返回类型是否为PageInfo,none返回Page --> |
|
||||
<!-- <property name="returnPageInfo" value="check"/>--> |
|
||||
</plugin> |
|
||||
<plugin interceptor="com.mdp.safe.mybatis.plugin.DbAccessAuthPlugin"></plugin> |
|
||||
</plugins> |
|
||||
</configuration> |
|
||||
Write
Preview
Loading…
Cancel
Save
Reference in new issue