1 16 17 package org.springframework.context; 18 19 20 27 public class TestListener implements ApplicationListener { 28 29 private int eventCount; 31 32 public int getEventCount() { 33 return eventCount; 34 } 35 36 public void zeroCounter() { 37 eventCount = 0; 38 } 39 40 public TestListener() { 41 } 42 43 44 50 public void onApplicationEvent(ApplicationEvent e) { 51 ++eventCount; 53 } 54 55 } | Popular Tags |