Advertisement
Guest User

Untitled

a guest
Apr 5th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.95 KB | None | 0 0
  1. e# This is the main configuration file for the application.
  2. # ~~~~~
  3.  
  4. # Secret key
  5. # ~~~~~
  6. # The secret key is used to secure cryptographics functions.
  7.  
  8. # If you deploy your application to several instances be sure to use the same key!
  9. application.secret="?@3Y^s/S>oCNuO7If3Mq8]U285PqOG[bh/;^WVjZ@p5=`KljrbDrg4tBG6clCPuN"
  10.  
  11. # The application languages
  12. # ~~~~~
  13. application.langs="en"
  14.  
  15. # Global object class
  16. # ~~~~~
  17. # Define the Global object class for this application.
  18. # Default to Global in the root package.
  19. # application.global=Global
  20.  
  21. # Router
  22. # ~~~~~
  23. # Define the Router object to use for this application.
  24. # This router will be looked up first when the application is starting up,
  25. # so make sure this is the entry point.
  26. # Furthermore, it's assumed your route file is named properly.
  27. # So for an application router like `conf/my.application.Router`,
  28. # you may need to define a router file `my.application.routes`.
  29. # Default to Routes in the root package (and `conf/routes`)
  30. # application.router=my.application.Routes
  31.  
  32. # Database configuration
  33. # ~~~~~
  34. # You can declare as many datasources as you want.
  35. # By convention, the default datasource is named `default`
  36. #
  37. # db.default.driver=org.h2.Driver
  38. # db.default.url="jdbc:h2:mem:play"
  39. # db.default.user=sa
  40. # db.default.password=""
  41. #
  42. # You can expose this datasource via JNDI if needed (Useful for JPA)
  43. # db.default.jndiName=DefaultDS
  44.  
  45. # Evolutions
  46. # ~~~~~
  47. # You can disable evolutions if needed
  48. # evolutionplugin=disabled
  49.  
  50. # Ebean configuration
  51. # ~~~~~
  52. # You can declare as many Ebean servers as you want.
  53. # By convention, the default server is named `default`
  54. #
  55. # ebean.default="models.*"
  56.  
  57. # Logger
  58. # ~~~~~
  59. # You can also configure logback (http://logback.qos.ch/), by providing a logger.xml file in the conf directory .
  60.  
  61. # Root logger:
  62. logger.root=ERROR
  63.  
  64. # Logger used by the framework:
  65. logger.play=INFO
  66.  
  67. # Logger provided to your application:
  68. logger.application=DEBUG
  69.  
  70. Bad request
  71. For request 'POST /bars' [Expecting xml body]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement