Error: my controller redirect me to another URL

Error: my controller redirect me to another URL

请任何人告诉我为什么每次我都尝试连接到 localhost:8080/users/get 我被自动重定向到另一个 localhost:8080/登录.

**** 我的应用程序中只有一个控制器 ****

谢谢大家。

  @RestController
@RequestMapping(path = "users")
public class UserController {
    @Autowired
    private UserRepository userRepository;
    @GetMapping("/get")
    public List<User> getUsers() {
        System.out.println("hii");
        return userRepository.findAll();
    }

}

请评论您 pom.xml 的以下依赖项。 Post 您不会被重定向到登录页面:

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-security</artifactId>
        </dependency>