13 lines
202 B
Java
13 lines
202 B
Java
package com.baeldung.di.aspectj;
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
@Service
|
|
public class IdService {
|
|
private static int count;
|
|
|
|
int generateId() {
|
|
return ++count;
|
|
}
|
|
}
|