build.properties
上传用户:dezhong
上传日期:2022-08-10
资源大小:167k
文件大小:2k
源码类别:

Java编程

开发平台:

Java

  1. # Ant properties for building the Spring PetClinic sample application
  2. # ------------------------------------------------------------------------------
  3. # CUSTOMIZE the HSQL database properties for the setupDB/test tasks.
  4. hsql.driver=org.hsqldb.jdbcDriver
  5. hsql.url=jdbc:hsqldb:hsql://localhost:9001
  6. # For jboss use the port 1701. Replace the line above by this below without the comment.
  7. # hsql.url=jdbc:hsqldb:hsql://localhost:1701
  8. hsql.user=sa
  9. hsql.pw=
  10. # ------------------------------------------------------------------------------
  11. # CUSTOMIZE the MYSQL database properties for the setupDB/test tasks.
  12. mysql.driver=com.mysql.jdbc.Driver
  13. mysql.url=jdbc:mysql://localhost:3306/petclinic
  14. mysql.user=pc
  15. mysql.pw=pc
  16. # ------------------------------------------------------------------------------
  17. # NOTE: To CONFIGURE the DATABASE, you will need to:
  18. #
  19. # 1) CUSTOMIZE the above database properties as needed.
  20. #
  21. # 2) For the webapp:
  22. #    a) Customize the JDBC settings (i.e., jdbc.* and jpa.*) in "src/jdbc.properties".
  23. #       Make sure that the connection settings configured in this file are consistent
  24. #       with those in "src/jdbc.properties".
  25. #    b) If you intend to use connection pooling via a Tomcat resource, you will
  26. #       need to deploy the petclinic_tomcat_*.xml file (found in db/mysql or
  27. #       db/hsqldb) for the corresponding database.
  28. #
  29. # 3) For the tests:
  30. #    UNCOMMENT ***ONE*** of the following lines to SELECT the database to use
  31. #    for the various Ant targets defined in build.xml and db/build.xml.
  32. useHSQL=
  33. #useMYSQL=
  34. # ------------------------------------------------------------------------------
  35. # JPA specific settings
  36. jpa.excludes = **/jpa/**
  37. toplink.excludes = **/toplink/Essential*
  38. aspectj.excludes = **/aspects/**