From e3299e62cfcf957425f29635a07a1793aeec76cf Mon Sep 17 00:00:00 2001 From: qiaozhanwei Date: Sun, 17 Nov 2019 01:13:04 -0600 Subject: [PATCH] dockerfile add application-api.properties and change application.properties to application-dao.properties (#1259) * ConnectionFactory add paging intercepter * remove spotbugs-annotations.jar LGPL protocol * test * catch exception transaction method does not take effect to modify * .evn rollback * DataSourceService rollback * LogViewServiceGrpc rollback * dockerfile add application-api.properties and change application.properties to application-dao.properties --- .../conf/application-api.properties | 23 +++++++++++++++++++ ....properties => application-dao.properties} | 0 2 files changed, 23 insertions(+) create mode 100644 dockerfile/conf/dolphinscheduler/conf/application-api.properties rename dockerfile/conf/dolphinscheduler/conf/{application.properties => application-dao.properties} (100%) diff --git a/dockerfile/conf/dolphinscheduler/conf/application-api.properties b/dockerfile/conf/dolphinscheduler/conf/application-api.properties new file mode 100644 index 0000000000..71ef666e53 --- /dev/null +++ b/dockerfile/conf/dolphinscheduler/conf/application-api.properties @@ -0,0 +1,23 @@ +logging.config=classpath:apiserver_logback.xml + +# server port +server.port=12345 + +# session config +server.servlet.session.timeout=7200 + +server.servlet.context-path=/dolphinscheduler/ + +# file size limit for upload +spring.servlet.multipart.max-file-size=1024MB +spring.servlet.multipart.max-request-size=1024MB + +#post content +server.jetty.max-http-post-size=5000000 + +spring.messages.encoding=UTF-8 + +#i18n classpath folder , file prefix messages, if have many files, use "," seperator +spring.messages.basename=i18n/messages + + diff --git a/dockerfile/conf/dolphinscheduler/conf/application.properties b/dockerfile/conf/dolphinscheduler/conf/application-dao.properties similarity index 100% rename from dockerfile/conf/dolphinscheduler/conf/application.properties rename to dockerfile/conf/dolphinscheduler/conf/application-dao.properties