File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
specs/src/main/java/org/seedstack/seed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 3434 <shiro .version>1.4.0</shiro .version>
3535 <undertow .version>2.0.17.Final</undertow .version>
3636 <jersey2 .version>2.30</jersey2 .version>
37- <hibernate-validator .version>5.4.3 .Final</hibernate-validator .version>
37+ <hibernate-validator .version>6.1.5 .Final</hibernate-validator .version>
3838 <aopalliance .version>1.0</aopalliance .version>
3939 <glassfish-javax .el.version>3.0.0</glassfish-javax .el.version>
4040 <arquillian .version>1.4.0.Final</arquillian .version>
Original file line number Diff line number Diff line change 1111/**
1212 * Any class implementing this interface will be registered as an application lifecycle listener. As the application
1313 * starts and stops, these callbacks will be invoked to allow for executing startup and/or shutdown code.
14- * LifecycleListeners are singletons and injected.
14+ * <p>LifecycleListeners are singletons, meaning that the same instance will be used for all method invocations. You can
15+ * use injection and interception at all phases.</p>
1516 */
1617public interface LifecycleListener {
1718 /**
18- * This method is called by SeedStack just after the application has initialized but is not started yet .
19+ * This method is called by SeedStack just before the application is starting .
1920 */
2021 default void starting () {
2122 // no-op
@@ -29,7 +30,7 @@ default void started() {
2930 }
3031
3132 /**
32- * This method is called by SeedStack just before the application is shut down.
33+ * This method is called by SeedStack just before the application is shutting down.
3334 */
3435 default void stopping () {
3536 // no-op
You can’t perform that action at this time.
0 commit comments