Skip to content

Commit

Permalink
Add proxyBeanMethods = false
Browse files Browse the repository at this point in the history
It's slightly faster, and we don't need proxies in this app.
  • Loading branch information
dsyer committed Nov 20, 2019
1 parent 2c98a68 commit 1561eb5
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
* @author Dave Syer
*
*/
@SpringBootApplication
@SpringBootApplication(proxyBeanMethods = false)
public class PetClinicApplication {

public static void main(String[] args) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,19 @@

package org.springframework.samples.petclinic.system;

import javax.cache.configuration.MutableConfiguration;

import org.springframework.boot.autoconfigure.cache.JCacheManagerCustomizer;
import org.springframework.cache.annotation.EnableCaching;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

import javax.cache.configuration.MutableConfiguration;

/**
* Cache configuration intended for caches providing the JCache API. This configuration creates the used cache for the
* application and enables statistics that become accessible via JMX.
* Cache configuration intended for caches providing the JCache API. This configuration
* creates the used cache for the application and enables statistics that become
* accessible via JMX.
*/
@Configuration
@Configuration(proxyBeanMethods = false)
@EnableCaching
class CacheConfiguration {

Expand All @@ -39,11 +40,13 @@ public JCacheManagerCustomizer petclinicCacheConfigurationCustomizer() {
}

/**
* Create a simple configuration that enable statistics via the JCache programmatic configuration API.
* Create a simple configuration that enable statistics via the JCache programmatic
* configuration API.
* <p>
* Within the configuration object that is provided by the JCache API standard, there is only a very limited set of
* configuration options. The really relevant configuration options (like the size limit) must be set via a
* configuration mechanism that is provided by the selected JCache implementation.
* Within the configuration object that is provided by the JCache API standard, there
* is only a very limited set of configuration options. The really relevant
* configuration options (like the size limit) must be set via a configuration
* mechanism that is provided by the selected JCache implementation.
*/
private javax.cache.configuration.Configuration<Object, Object> cacheConfiguration() {
return new MutableConfiguration<>().setStatisticsEnabled(true);
Expand Down

0 comments on commit 1561eb5

Please sign in to comment.