2013-02-21 01:44:38 +00:00
# Spring PetClinic Sample Application
2013-09-27 03:19:25 +00:00
2013-03-20 08:13:31 +00:00
## Understanding the Spring Petclinic application with a few diagrams
< a href = "https://speakerdeck.com/michaelisvy/spring-petclinic-sample-application" > See the presentation here< / a >
2013-02-21 01:44:38 +00:00
## Running petclinic locally
2013-02-21 02:10:41 +00:00
```
2015-05-23 01:41:21 +00:00
git clone https://github.com/spring-projects/spring-petclinic.git
2013-02-21 02:11:51 +00:00
mvn tomcat7:run
2013-02-21 02:10:41 +00:00
```
2013-02-21 02:11:51 +00:00
2013-02-21 01:44:38 +00:00
You can then access petclinic here: http://localhost:9966/petclinic/
2013-05-07 02:58:21 +00:00
## In case you find a bug/suggested improvement for Spring Petclinic
2015-05-23 01:41:21 +00:00
Our issue tracker is available here: https://github.com/spring-projects/spring-petclinic/issues
2013-05-07 02:58:21 +00:00
2013-02-21 02:10:41 +00:00
## Working with Petclinic in Eclipse/STS
2013-02-21 01:44:38 +00:00
2013-02-21 02:10:41 +00:00
### prerequisites
2013-02-21 01:44:38 +00:00
The following items should be installed in your system:
* Maven 3 (http://www.sonatype.com/books/mvnref-book/reference/installation.html)
2013-02-21 02:10:41 +00:00
* git command line tool (https://help.github.com/articles/set-up-git)
* Eclipse with the m2e plugin (m2e is installed by default when using the STS (http://www.springsource.org/sts) distribution of Eclipse)
2013-02-21 01:44:38 +00:00
2013-02-21 02:10:41 +00:00
Note: when m2e is available, there is an m2 icon in Help -> About dialog.
If m2e is not there, just follow the install process here: http://eclipse.org/m2e/download/
2013-02-21 01:44:38 +00:00
2013-02-21 02:10:41 +00:00
### Steps:
2013-02-21 01:44:38 +00:00
2013-03-20 08:13:31 +00:00
1) In the command line
2013-02-21 02:10:41 +00:00
```
2015-05-23 01:41:21 +00:00
git clone https://github.com/spring-projects/spring-petclinic.git
2013-02-21 02:10:41 +00:00
```
2013-03-20 08:13:31 +00:00
2) Inside Eclipse
2013-02-21 02:10:41 +00:00
```
File -> Import -> Maven -> Existing Maven project
```
## Looking for something in particular?
< table >
2015-05-23 01:34:03 +00:00
< tr >
< th width = "300px" > Java Config< / th > < th width = "300px" > < / th >
< / tr >
2013-02-21 02:10:41 +00:00
< tr >
2015-05-23 01:31:57 +00:00
< td > Java Config branch< / td >
2013-02-21 02:10:41 +00:00
< td >
2015-05-29 06:07:39 +00:00
Petclinic uses XML configuration by default. In case you'd like to use Java Config instead, there is a Java Config branch available < a href = "https://github.com/spring-projects/spring-petclinic/tree/javaconfig" > here< / a > . Thanks to Antoine Rey for his contribution.
2013-02-21 02:10:41 +00:00
< / td >
< / tr >
2015-05-23 01:31:57 +00:00
< tr >
< th width = "300px" > Inside the 'Web' layer< / th > < th width = "300px" > Files< / th >
< / tr >
2013-02-21 02:10:41 +00:00
< tr >
< td > Spring MVC - XML integration< / td >
2013-08-25 00:17:02 +00:00
< td > < a href = "/src/main/resources/spring/mvc-view-config.xml" > mvc-view-config.xml< / a > < / td >
2013-03-20 08:13:31 +00:00
< / tr >
< tr >
< td > Spring MVC - ContentNegotiatingViewResolver< / td >
2013-08-25 00:17:02 +00:00
< td > < a href = "/src/main/resources/spring/mvc-view-config.xml" > mvc-view-config.xml< / a > < / td >
2013-02-21 02:10:41 +00:00
< / tr >
< tr >
< td > JSP custom tags< / td >
< td >
2013-08-25 00:17:02 +00:00
< a href = "/src/main/webapp/WEB-INF/tags" > WEB-INF/tags< / a >
< a href = "/src/main/webapp/WEB-INF/jsp/owners/createOrUpdateOwnerForm.jsp" > createOrUpdateOwnerForm.jsp< / a > < / td >
2013-02-21 02:10:41 +00:00
< / tr >
< tr >
< td > webjars< / td >
< td >
2013-08-25 00:17:02 +00:00
< a href = "/pom.xml" > webjars declaration inside pom.xml< / a > < br / >
< a href = "/src/main/resources/spring/mvc-core-config.xml#L24" > Resource mapping in Spring configuration< / a > < br / >
2015-06-05 10:37:46 +00:00
< a href = "/src/main/webapp/WEB-INF/jsp/fragments/staticFiles.jsp#L12" > sample usage in JSP< / a > < / td >
2013-02-21 02:10:41 +00:00
< / td >
< / tr >
2013-03-20 08:13:31 +00:00
< tr >
2013-03-20 09:57:07 +00:00
< td > Dandelion-datatables< / td >
2013-03-20 08:13:31 +00:00
< td >
2013-08-25 00:17:02 +00:00
< a href = "/src/main/webapp/WEB-INF/jsp/owners/ownersList.jsp" > ownersList.jsp< / a >
< a href = "/src/main/webapp/WEB-INF/jsp/vets/vetList.jsp" > vetList.jsp< / a >
< a href = "/src/main/webapp/WEB-INF/web.xml" > web.xml< / a >
2014-06-01 10:50:08 +00:00
< a href = "/src/main/resources/dandelion/datatables/datatables.properties" > datatables.properties< / a >
2013-03-20 08:13:31 +00:00
< / td >
< / tr >
< tr >
< td > Thymeleaf branch< / td >
< td >
< a href = "http://www.thymeleaf.org/petclinic.html" > See here< / a > < / td >
< / tr >
2013-04-26 07:50:04 +00:00
< tr >
< td > Branch using GemFire and Spring Data GemFire instead of ehcache (thanks Bijoy Choudhury)< / td >
< td >
< a href = "https://github.com/bijoych/spring-petclinic-gemfire" > See here< / a > < / td >
< / tr >
2013-03-20 08:13:31 +00:00
< / table >
< table >
< tr >
< th width = "300px" > 'Service' and 'Repository' layers< / th > < th width = "300px" > Files< / th >
< / tr >
< tr >
< td > Transactions< / td >
< td >
2013-08-25 00:17:02 +00:00
< a href = "/src/main/resources/spring/business-config.xml" > business-config.xml< / a >
< a href = "/src/main/java/org/springframework/samples/petclinic/service/ClinicServiceImpl.java" > ClinicServiceImpl.java< / a >
2013-03-20 08:13:31 +00:00
< / td >
< / tr >
< tr >
< td > Cache< / td >
< td >
2013-08-25 00:17:02 +00:00
< a href = "/src/main/resources/spring/tools-config.xml" > tools-config.xml< / a >
< a href = "/src/main/java/org/springframework/samples/petclinic/service/ClinicServiceImpl.java" > ClinicServiceImpl.java< / a >
2013-03-20 08:13:31 +00:00
< / td >
< / tr >
< tr >
< td > Bean Profiles< / td >
< td >
2013-08-25 00:17:02 +00:00
< a href = "/src/main/resources/spring/business-config.xml" > business-config.xml< / a >
< a href = "/src/test/java/org/springframework/samples/petclinic/service/ClinicServiceJdbcTests.java" > ClinicServiceJdbcTests.java< / a >
< a href = "/src/main/webapp/WEB-INF/web.xml" > web.xml< / a >
2013-03-20 08:13:31 +00:00
< / td >
< / tr >
< tr >
< td > JdbcTemplate< / td >
< td >
2013-08-25 00:17:02 +00:00
< a href = "/src/main/resources/spring/business-config.xml" > business-config.xml< / a >
< a href = "/src/main/java/org/springframework/samples/petclinic/repository/jdbc" > jdbc folder< / a > < / td >
2013-03-20 08:13:31 +00:00
< / tr >
< tr >
< td > JPA< / td >
< td >
2013-08-25 00:17:02 +00:00
< a href = "/src/main/resources/spring/business-config.xml" > business-config.xml< / a >
< a href = "/src/main/java/org/springframework/samples/petclinic/repository/jpa" > jpa folder< / a > < / td >
2013-03-20 08:13:31 +00:00
< / tr >
< tr >
< td > Spring Data JPA< / td >
< td >
2013-08-25 00:17:02 +00:00
< a href = "/src/main/resources/spring/business-config.xml" > business-config.xml< / a >
< a href = "/src/main/java/org/springframework/samples/petclinic/repository/springdatajpa" > springdatajpa folder< / a > < / td >
2013-03-20 08:13:31 +00:00
< / tr >
2013-02-21 02:10:41 +00:00
< / table >
2013-03-20 08:13:31 +00:00
< table >
< tr >
< th width = "300px" > Others< / th > < th width = "300px" > Files< / th >
< / tr >
< tr >
< td > Gradle branch< / td >
< td >
< a href = "https://github.com/whimet/spring-petclinic" > See here< / a > < / td >
< / tr >
2013-05-06 02:57:17 +00:00
< / table >
## Interaction with other open source projects
2013-05-06 03:00:13 +00:00
One of the best parts about working on the Spring Petclinic application is that we have the opportunity to work in direct contact with many Open Source projects. We found some bugs/suggested improvements on various topics such as Spring, Spring Data, Bean Validation and even Eclipse! In many cases, they've been fixed/implemented in just a few days.
2013-05-06 02:57:17 +00:00
Here is a list of them:
< table >
< tr >
2013-05-06 03:00:13 +00:00
< th width = "300px" > Name< / th >
< th width = "300px" > Issue < / th >
< / tr >
< tr >
< td > Spring JDBC: simplify usage of NamedParameterJdbcTemplate< / td >
< td > < a href = "https://jira.springsource.org/browse/SPR-10256" > SPR-10256< / a > and < a href = "https://jira.springsource.org/browse/SPR-10257" > SPR-10257< / a > < / td >
2013-05-06 02:57:17 +00:00
< / tr >
< tr >
< td > Bean Validation / Hibernate Validator: simplify Maven dependencies and backward compatibility< / td >
< td >
< a href = "https://hibernate.atlassian.net/browse/HV-790" > HV-790< / a > and < a href = "https://hibernate.atlassian.net/browse/HV-792" > HV-792< / a >
< / td >
< / tr >
< tr >
< td > Spring Data: provide more flexibility when working with JPQL queries< / td >
< td >
< a href = "https://jira.springsource.org/browse/DATAJPA-292" > DATAJPA-292< / a >
< / td >
< / tr >
< tr >
2013-09-27 03:31:36 +00:00
< td > Eclipse: validation bug when working with .tag/.tagx files (has only been fixed for Eclipse 4.3 (Kepler)). < a href = "https://github.com/spring-projects/spring-petclinic/issues/14" > See here for more details.< / a > < / td >
2013-05-06 02:57:17 +00:00
< td >
< a href = "https://issuetracker.springsource.com/browse/STS-3294" > STS-3294< / a >
< / td >
< / tr >
< / table >