michaelisvy
92e7ab43be
Simplified ContentNegoViewResolver config
...
- Now using namespace, much simpler (11 lines instead of 27)
- Just a minor issue with:
<bean class="org.springframework.web.servlet.view.JstlView">
<property name="url" value="" />
</bean>
(should investigate later if we can remove “url” attribute
2014-11-28 12:45:57 +09:00
michaelisvy
475f5f5349
migrated to Spring 4.1.1.RELEASE
...
Also had to make changes because Spring now uses com.rometools for RSS
feeds
See here for more details: https://jira.spring.io/browse/SPR-11893
2014-10-18 23:36:15 +08:00
michaelisvy
74f683aaa9
Fixed typo
2014-10-18 22:13:01 +08:00
Craig Dennis
de73bdce6b
Fixed some typos in comments
2014-07-07 21:19:40 -07:00
michaelisvy
ce50e80736
Merge pull request #42 from bram-atmire/documentation-fix
...
update db_readme.txt to reflect properties rename
2014-06-02 08:41:51 +08:00
Thibault Duchateau
e99c67a4bb
Upgraded Dandelion-Datatables to the latest release (v0.10.0)
...
* The old datatables-servlet2 dependency has been removed from the pom.xml
* Some attributes have been renamed (e.g. paginate => pageable)
* Starting from the v0.10.0, all web components (servlet, filter) must be explicitely declared in the web.xml file. That's why I added the following declaration: DandelionFilter, DandelionServlet and DatatablesFilter
* Added a new datatables.properties file in order to disable the asset management brought by Dandelion-Core. This is equivalent to the old cdn=true table attribute
2014-05-31 11:02:32 +02:00
Bram Luyten
1341c12d1f
update db_readme.txt to reflect properties rename
...
jdbc.properties was renamed to data-access.properties, but this file still referred to the old name.
2014-05-11 18:37:42 +02:00
Mic
3f0bfbbdbe
updates logo
2014-04-12 23:28:53 +08:00
Mic
622291aba7
Merge branch 'master' of https://github.com/SpringSource/spring-petclinic
2014-04-12 11:27:53 +08:00
michaelisvy
7dc6da25d8
Merge pull request #39 from arey/patch-1
...
Remove public to methods from the ClinicService
2014-04-12 11:27:32 +08:00
Mic
5e329e1766
Merge branch 'master' of https://github.com/SpringSource/spring-petclinic
2014-04-11 21:28:09 +08:00
Antoine Rey
67ae72f324
Remove public to methods from the ClinicService
...
Any method you define in an interface is by definition public
2014-03-23 17:43:58 +01:00
Mic
35a94eaa5d
migrating to Spring 4.0.2
2014-03-03 21:24:29 +08:00
Antoine Rey
076a124e0a
Fixes #37 with other default locale than english
...
Test in error with french default Locale:
org.junit.ComparisonFailure: expected:<[ne peut pas être vide]> but was:<[may not be empty]>
at org.junit.Assert.assertEquals(Assert.java:115)
at org.junit.Assert.assertEquals(Assert.java:144)
at org.springframework.samples.petclinic.model.ValidatorTests.emptyFirstName(ValidatorTests.java:39)
2014-02-24 14:05:02 +01:00
Mic
08d84ed2b3
added comment for welcome file
2013-12-16 21:00:51 +09:00
Mic
5cfd482edc
removed default profile and replaced with "jpa"
2013-12-16 20:58:15 +09:00
Mic
3e8829f372
adding explicit reference to default profile because it doesn't seem to work on on some environments
2013-12-13 08:15:10 +08:00
Mic
34d8ca46ac
chaining validation so we can see multiple error messages when there are multiple validation errors
2013-11-06 09:18:33 +08:00
Mic
c4b9b0b119
migrated to the latest version of jquery and jquery-ui
2013-11-06 08:58:15 +08:00
Mic
b7764e39b2
Added comments to explain how database dialect is configured #33
2013-09-27 09:33:09 +08:00
Cyrille Le Clerc
e15e45b5e2
Spring MVC should server static resources (*.html, ...) located in src/main/webapp instead of returning "404 Not Found"
2013-08-10 19:49:01 +02:00
Mic
4c01d60b36
removing Serializable because it creates a lot of warnings
...
App should be as simple as possible for beginners
2013-07-25 16:35:37 +02:00
michaelisvy
6412e4805b
Merge pull request #25 from boly38/patch-1
...
Update BaseEntity.java
2013-07-20 14:04:13 -07:00
boly38
e50583f58e
Update BaseEntity.java
...
This fix the following error :
"setAttribute: Non-serializable attribute owner"
In the following context :
- hsql database configuration (updating data-access.properties only)
- mvn clean install bees:run (cloudbees local run)
2013-07-12 10:22:38 +02:00
Cyrille Le Clerc
2eaf4983a1
Introduce a "jee" Spring profile to retrieve the datasource with a JNDI lookup.
2013-07-01 12:13:29 +02:00
Cyrille Le Clerc
8c5bbed6d0
Allow to override data-access.properties with System Properties
2013-06-28 11:32:04 +02:00
Mic
c13f141251
introducing a "default" profile so default configuration is simpler
2013-06-28 12:00:29 +08:00
Mic
a2a12c4d52
#18 Simplified Validator test so it doesn't have to use Spring config anymore
2013-06-14 09:39:46 +08:00
Mic
754e27c001
removing unneeded attribute name
2013-06-12 11:34:05 +08:00
Mic
7b8a9ec8bc
#18 fixing error related to VisitsViewTests
...
- test didn't have the suffix "Tests" so it was not taken into account
when running Maven in the comand line
2013-06-08 21:17:35 +08:00
Mic
4f8063e9b8
#18 fixing 2 errors related to ValidatorTests
...
- test didn't have the suffix "Tests" so it was not taken into account
when running Maven in the comand line
- the POM was not configured so it can find Spring config files placed
inside src/test/java
2013-06-08 21:15:34 +08:00
Mic
eb8ba79ba1
moved cache config files to dedicated folder
2013-06-05 09:04:41 +08:00
Mic
d1cc655aae
migrated from commons-dbcp to tomcat-jdbc
2013-06-05 08:59:59 +08:00
TejasM
f0b00da185
Select Tag to validate pet type
2013-05-27 14:28:24 -04:00
Mic
bca9c48e92
unused imports
2013-05-25 06:24:19 +08:00
Mic
2b0d07bbba
moved from Model to Map so we do not use a Spring-specific class
2013-05-25 06:20:44 +08:00
Mic
6a1b4dd157
updated version of spring data and removed unused dependencies
2013-05-24 10:31:42 +08:00
Mic
840c0a417d
fixing JPA query for Vets
2013-05-09 01:26:48 +08:00
Mic
5bf31dbe5a
fixed JPA issue when updating existing owners/pets
2013-05-09 01:09:21 +08:00
Mic
80159fa3d7
fixed bug in JPA implementation: "save" methods were implemented using "merge" instead of "persist"
2013-05-07 10:54:35 +08:00
Mic
c88e3d462a
added a JUnit test for Bean Validation
2013-05-03 10:36:54 +08:00
Mic
193e7583f1
added encoding configuration so people can enter Chinese characters inside all the forms.
2013-05-02 18:33:24 +08:00
Mic
a485521b6d
changed file path. Thanks to @cmourouvin for letting me know.
2013-05-02 11:32:03 +08:00
Mic
993257f5a8
We're now able to use Spring Data there
...
see: https://jira.springsource.org/browse/DATAJPA-292
2013-04-18 10:10:16 +08:00
Mic
628e142708
fixing URL pattern issue
2013-04-05 10:01:47 +08:00
Mic
357ee0b78e
did some cleaning on logging dependencies
2013-04-04 15:11:07 +08:00
Mic
ed226f70b5
fixing typo
2013-03-25 22:39:14 +11:00
Mic
6086dec5c3
updated copyright information
2013-03-20 15:33:29 +08:00
Mic
bb32cd842b
adding HTML 5 doctype header
2013-03-18 21:37:01 +08:00
Mic
f1603221a2
Added comment because https://jira.springsource.org/browse/DATAJPA-292 has been resolved
2013-03-18 14:14:24 +08:00