Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
broken-petclinic
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
s70130
broken-petclinic
Commits
f78ee5d7
Commit
f78ee5d7
authored
8 years ago
by
Antoine Rey
Browse files
Options
Downloads
Patches
Plain Diff
Using the @CacheResult JSR-107 JCache annotation
parent
6ff35b6c
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/org/springframework/samples/petclinic/service/ClinicServiceImpl.java
+6
-10
6 additions, 10 deletions
...ramework/samples/petclinic/service/ClinicServiceImpl.java
with
6 additions
and
10 deletions
src/main/java/org/springframework/samples/petclinic/service/ClinicServiceImpl.java
+
6
−
10
View file @
f78ee5d7
...
@@ -15,16 +15,9 @@
...
@@ -15,16 +15,9 @@
*/
*/
package
org.springframework.samples.petclinic.service
;
package
org.springframework.samples.petclinic.service
;
import
java.util.Collection
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.cache.annotation.Cacheable
;
import
org.springframework.dao.DataAccessException
;
import
org.springframework.dao.DataAccessException
;
import
org.springframework.samples.petclinic.model.Owner
;
import
org.springframework.samples.petclinic.model.*
;
import
org.springframework.samples.petclinic.model.Pet
;
import
org.springframework.samples.petclinic.model.PetType
;
import
org.springframework.samples.petclinic.model.Vet
;
import
org.springframework.samples.petclinic.model.Visit
;
import
org.springframework.samples.petclinic.repository.OwnerRepository
;
import
org.springframework.samples.petclinic.repository.OwnerRepository
;
import
org.springframework.samples.petclinic.repository.PetRepository
;
import
org.springframework.samples.petclinic.repository.PetRepository
;
import
org.springframework.samples.petclinic.repository.VetRepository
;
import
org.springframework.samples.petclinic.repository.VetRepository
;
...
@@ -32,9 +25,12 @@ import org.springframework.samples.petclinic.repository.VisitRepository;
...
@@ -32,9 +25,12 @@ import org.springframework.samples.petclinic.repository.VisitRepository;
import
org.springframework.stereotype.Service
;
import
org.springframework.stereotype.Service
;
import
org.springframework.transaction.annotation.Transactional
;
import
org.springframework.transaction.annotation.Transactional
;
import
javax.cache.annotation.CacheResult
;
import
java.util.Collection
;
/**
/**
* Mostly used as a facade for all Petclinic controllers
* Mostly used as a facade for all Petclinic controllers
* Also a placeholder for @Transactional and @Cache
able
annotations
* Also a placeholder for @Transactional and @Cache
Result
annotations
*
*
* @author Michael Isvy
* @author Michael Isvy
*/
*/
...
@@ -100,7 +96,7 @@ public class ClinicServiceImpl implements ClinicService {
...
@@ -100,7 +96,7 @@ public class ClinicServiceImpl implements ClinicService {
@Override
@Override
@Transactional
(
readOnly
=
true
)
@Transactional
(
readOnly
=
true
)
@Cache
able
(
valu
e
=
"vets"
)
@Cache
Result
(
cacheNam
e
=
"vets"
)
public
Collection
<
Vet
>
findVets
()
throws
DataAccessException
{
public
Collection
<
Vet
>
findVets
()
throws
DataAccessException
{
return
vetRepository
.
findAll
();
return
vetRepository
.
findAll
();
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment