diff --git a/readme.md b/readme.md index d0ad14f94..fdc5491b0 100644 --- a/readme.md +++ b/readme.md @@ -1,4 +1,4 @@ -# Spring Boot version of the Spring PetClinic Sample Application [](https://travis-ci.org/spring-projects/spring-petclinic/) +# Spring PetClinic Sample Application [](https://travis-ci.org/spring-projects/spring-petclinic/) ## Understanding the Spring Petclinic application with a few diagrams See the presentation here @@ -7,7 +7,6 @@ ``` git clone https://github.com/spring-projects/spring-petclinic.git cd spring-petclinic - git checkout springboot ./mvnw spring-boot:run ``` @@ -23,7 +22,7 @@ In its default configuration, Petclinic uses an in-memory database (HSQLDB) whic gets populated at startup with data. A similar setup is provided for MySql in case a persistent database configuration is needed. Note that whenever the database type is changed, the data-access.properties file needs to be updated and the mysql-connector-java artifact from the pom.xml needs to be uncommented. -You may start a MySql database with docker: +You could start a MySql database with docker: ``` docker run -e MYSQL_ROOT_PASSWORD=petclinic -e MYSQL_DATABASE=petclinic -p 3306:3306 mysql:5.7.8 @@ -55,88 +54,22 @@ File -> Import -> Maven -> Existing Maven project ## Looking for something in particular? -
Spring Boot Configuration | - |
---|---|
The Main Class | -PetClinicApplication.java | -
Properties Files | -- application.properties - | -
Caching | -Use of EhCache CacheConfig.java ehcache.xml | -
Spring MVC - XML integration | -CustomViewsConfiguration.java | -
Others | Files | -
---|---|
JSP custom tags | -- WEB-INF/tags - createOrUpdateOwnerForm.jsp | -
Bower | -
- bower-install maven profile declaration inside pom.xml - JavaScript libraries are defined by the manifest file bower.json - Bower configuration using JSON - Resource mapping in Spring configuration - sample usage in JSP |
-
-
Name | -Issue | -
---|---|
Spring JDBC: simplify usage of NamedParameterJdbcTemplate | -SPR-10256 and SPR-10257 | -
Bean Validation / Hibernate Validator: simplify Maven dependencies and backward compatibility | -- HV-790 and HV-792 - | -
Spring Data: provide more flexibility when working with JPQL queries | -- DATAJPA-292 - | -
Eclipse: validation bug when working with .tag/.tagx files (has only been fixed for Eclipse 4.3 (Kepler)). See here for more details. | -- STS-3294 - | -