application.xml 915 B

123456789101112131415161718192021222324252627282930
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <application port="8585">
  3. <!-- see: http://redkale.org/redkale.html#redkale_confxml -->
  4. <resources>
  5. <properties>
  6. <property name="system.property.sun.nio.ch.disableSynchronousRead" value="true"/>
  7. <property name="system.property.sun.nio.ch.maxCompletionHandlersOnStack" value="56"/>
  8. <property name="system.property.http.response.header.server" value="redkale"/>
  9. </properties>
  10. </resources>
  11. <server protocol="HTTP" host="0.0.0.0" port="8080" threads="28" aliveTimeoutSeconds="300">
  12. <response>
  13. <contenttype plain="text/plain" json="application/json"/>
  14. <date period="1000"/>
  15. </response>
  16. <services autoload="true"/>
  17. <rest autoload="true"/>
  18. <servlets autoload="true"/>
  19. </server>
  20. </application>