Commit c18c0385 authored by 赵啸非's avatar 赵啸非

重构部分功能模块

parent 86a4db82
Pipeline #2317 canceled with stages
......@@ -60,7 +60,7 @@ exec "$JAVACMD" $JAVA_OPTS \
-Dapp.port="$PORT" \
-Dbasedir="$BASEDIR" \
-Djava.io.tmpdir=$TEMP_PATH \
-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=15504 \
-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=15501 \
-jar $MAIN_CLASS \
> /dev/null &
......
......@@ -422,13 +422,13 @@ public class MatterDatumEntity extends MatterDatumVo {
this.materiaFullName = "";
this.source = null;
this.source = 0;
this.isRecommend = null;
this.isRecommend = 0;
this.total = null;
this.total = 0;
this.sort = null;
this.sort = 0;
this.fileName = "";
......
......@@ -366,12 +366,12 @@ public class MatterEntity extends MatterVo {
this.deptName = "";
this.total = null;
this.total = 0;
this.sort = null;
this.sort = 0;
this.isRecommend = null;
this.isRecommend = 0;
this.source = null;
this.source = 0;
}
}
\ No newline at end of file
......@@ -39,8 +39,6 @@ public class MatterServiceImpl extends AbstractCRUDServiceImpl<MatterDao, Matter
private static int RECOMMEND_COUNT = 5;
@Autowired
private ParamService paramService;
@Autowired
private SheetMatterService sheetMatterService;
@Autowired
private MatterDatumService matterDatumService;
......
......@@ -57,7 +57,7 @@
<!-- level 用来设置打印级别,大小写无关:TRACE, DEBUG, INFO, WARN, ERROR, ALL 和 OFF,还有一个特俗值INHERITED或者同义词NULL,代表强制执行上级的级别。如果未设置此属性,那么当前logger将会继承上级的级别-->
<!-- additivity 是否向上级logger传递打印信息。默认是true。false:表示只用当前logger的appender-ref。true:表示当前logger的appender-ref和rootLogger的appender-ref都有效。-->
<logger name="com.mortals.xhx.module" level="${logLevel}" additivity="false">
<logger name="com.mortals.xhx.module" level="debug" additivity="false">
<appender-ref ref="console"/>
<appender-ref ref="fileInfo"/>
<appender-ref ref="fileError"/>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment