Bean scopes in Spring define how bean instances are created and managed throughout the application lifecycle. This article explores different scopes and their use cases.
Key features include:
@Service
@Scope("singleton") // Default scope
public class CacheService {
private Map cache = new HashMap<>();
public void put(String key, Object value) {
cache.put(key, value);
}
public Object get(String key) {
return cache.get(key);
}
}
@Component
@Scope("prototype")
public class UserPreferences {
private String theme;
private String language;
public void setTheme(String theme) {
this.theme = theme;
}
public void setLanguage(String language) {
this.language = language;
}
}
@Component
@Scope(value = "request", proxyMode = ScopedProxyMode.TARGET_CLASS)
public class RequestContext {
private String requestId;
private LocalDateTime timestamp;
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public void setTimestamp(LocalDateTime timestamp) {
this.timestamp = timestamp;
}
}
Issue | Solution |
---|---|
Prototype beans in singleton | Use ScopedProxyMode.TARGET_CLASS |
Memory leaks in prototype | Implement proper cleanup in destroy methods |
Scope not working | Check proxy mode and scope configuration |
Understanding bean scopes is crucial for building efficient and maintainable Spring applications. Each scope serves a specific purpose and has its own implications for memory usage and state management.
Remember to choose the appropriate scope based on your application's requirements and consider the impact on performance and resource usage.