Код: Выделить всё
@RequestMapping("/resource")
public Map home() {
Map model = new HashMap();
model.put("id", UUID.randomUUID().toString());
model.put("content", "Hello World");
return model;
}
Как узнать, какой пользователь вошел в систему в этом методе?
Подробнее здесь: https://stackoverflow.com/questions/311 ... pring-boot
Мобильная версия