-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBackup
94 lines (79 loc) · 3.32 KB
/
Backup
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
//При перезапуске сервера, добавленые пользователи удаляются. Остаются те что в коде.
package com.example.maven;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.*;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.concurrent.atomic.AtomicInteger;
class User {
public int id;
public String username;
public User(int id, String username) {
this.id = id;
this.username = username;
}
}
@SpringBootApplication
@RestController
public class MavenApplication {
public static void main(String[] args) {
SpringApplication.run(MavenApplication.class, args);
}
//Оповещение о заглушке.
//Пример запроса http://localhost:8080/mock
@GetMapping("/mock")
public String mock(@RequestParam(value = "name", defaultValue = "guys") String name) {
return String.format("Hello %s", name + "! This mock.");
}
@RestController
public class UsersController {
private List<User> users = new ArrayList<>();
private AtomicInteger idCounter = new AtomicInteger();
//Изначальный список с пользователями
public UsersController() {
users.add(new User(idCounter.incrementAndGet(), "John"));
users.add(new User(idCounter.incrementAndGet(), "Mary"));
users.add(new User(idCounter.incrementAndGet(), "Jane"));
}
//Получение списка пользователей (Get)
//Пример запроса http://localhost:8080/users
@GetMapping("/users")
public List<User> getUsers() {
return users;
}
//Получение пользователя по ID
// Пример запроса http://localhost:8080/users/search?id=2
@GetMapping("/users/search")
public String getUsersSearch(@RequestParam(value = "id", required = false) Integer id) {
if (id != null) {
User user = users.get(id);
return user != null ? user.username : "User not found";
} else {
return users.toString();
}
}
//Метод Delete ничего не удаляет, возвращает {"result": "success"}
@DeleteMapping("/users")
public Map<String, String> deleteUser() {
return Collections.singletonMap("result", "success");
}
//Добавление пользователя (POST)
//Пример запроса http://localhost:8080/users
//{"username": "Alex"}
@PostMapping("/users")
public Map<String, String> addUser(@RequestBody Map<String, String> userMap) {
String username = userMap.get("username");
if (username != null) {
int newId = idCounter.incrementAndGet();
User user = new User(newId, username);
users.add(user);
return Collections.singletonMap("result", "success");
} else {
return Collections.singletonMap("result", "failed");
}
}
}
}