BAEL-20552: Migrate spring-4 module to the com.baeldung package

This commit is contained in:
Krzysztof Woyke
2019-12-27 14:35:32 +01:00
parent b38e420b11
commit 1beda960e8
41 changed files with 48 additions and 48 deletions

View File

@@ -0,0 +1,10 @@
package com.baeldung.spring43.scopeannotations;
import org.springframework.stereotype.Component;
import org.springframework.web.context.annotation.RequestScope;
@Component
@RequestScope
public class LoginAction extends InstanceCountingService {
}