0
嘗試了一些東西 - 創建了一個簡單的Spring mvc應用程序,我有一個控制器類。我在春季的文檔中看到,控制器類是單調的,並創建了一個單一的實例,但當我嘗試時,情況並非如此。爲Spring MVC中的每個控制器請求創建不同的對象
@Controller
public class TestController {
String message = "Welcome to your 1st Maven Spring project !";
@Autowired
private Person person;
String ok="ok";
@RequestMapping("/hello")
public String test() throws InterruptedException {
System.out.println("word s "+ok);
System.out.println("from controller");
System.out.println(person.getName());
new TestController().ok="changed.";
在這裏,我訪問來自不同瀏覽器的URL你好,我得到「OK」字樣,即使我改變它的測試方法, 我這麼想嗎?
讓我的一天,thnx。 – parameswar
hasone。更多的疑問可以看看http://stackoverflow.com/questions/42725862/ – parameswar