ho la seguente Spring
regolatore:Spring MVC RestController portata
package hello;
import java.util.concurrent.atomic.AtomicLong;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RestController;
@RestController
public class TestController {
private final AtomicLong counter = new AtomicLong();
@RequestMapping("/test")
public String test() {
long val = counter.incrementAndGet();
return String.valueOf(val);
}
}
Ogni volta accede l'API REST, esso restituisce un valore incrementato. Sto solo imparando Java e mi chiedo perché non restituisca sempre 1 come una nuova istanza di AtomicLong
deve essere stata creata ogni volta che viene richiesta.
Perché pensi che stia creando una nuova istanza? – chrylis
@chrylis: Sono originario di .net background e ho appena avuto un confronto con esso. –