dolphin-application-api.xml 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <!--
  2. ~ Licensed to the Apache Software Foundation (ASF) under one or more
  3. ~ contributor license agreements. See the NOTICE file distributed with
  4. ~ this work for additional information regarding copyright ownership.
  5. ~ The ASF licenses this file to You under the Apache License, Version 2.0
  6. ~ (the "License"); you may not use this file except in compliance with
  7. ~ the License. You may obtain a copy of the License at
  8. ~
  9. ~ http://www.apache.org/licenses/LICENSE-2.0
  10. ~
  11. ~ Unless required by applicable law or agreed to in writing, software
  12. ~ distributed under the License is distributed on an "AS IS" BASIS,
  13. ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. ~ See the License for the specific language governing permissions and
  15. ~ limitations under the License.
  16. -->
  17. <configuration>
  18. <property>
  19. <name>server.port</name>
  20. <value>12345</value>
  21. <description>
  22. server port
  23. </description>
  24. <value-attributes>
  25. <type>int</type>
  26. </value-attributes>
  27. </property>
  28. <property>
  29. <name>server.servlet.session.timeout</name>
  30. <value>7200</value>
  31. <value-attributes>
  32. <type>int</type>
  33. </value-attributes>
  34. <description>
  35. </description>
  36. </property>
  37. <property>
  38. <name>spring.servlet.multipart.max-file-size</name>
  39. <value>1024</value>
  40. <value-attributes>
  41. <unit>MB</unit>
  42. <type>int</type>
  43. </value-attributes>
  44. <description>
  45. </description>
  46. </property>
  47. <property>
  48. <name>spring.servlet.multipart.max-request-size</name>
  49. <value>1024</value>
  50. <value-attributes>
  51. <unit>MB</unit>
  52. <type>int</type>
  53. </value-attributes>
  54. <description>
  55. </description>
  56. </property>
  57. <property>
  58. <name>server.jetty.max-http-post-size</name>
  59. <value>5000000</value>
  60. <value-attributes>
  61. <type>int</type>
  62. </value-attributes>
  63. <description>
  64. </description>
  65. </property>
  66. <property>
  67. <name>spring.messages.encoding</name>
  68. <value>UTF-8</value>
  69. <description></description>
  70. </property>
  71. </configuration>