我已经用这个 Spring 教程开始了我的项目。现在我想开发它,第一步是将OAuth2.0添加到这个项目中,但是当我在寻找一些关于如何添加它的教程时,总是从“用spring创建java应用程序,添加依赖项:SpringWeb,SpringSecurity…”开始。有没有办法将这些依赖项添加到现有项目中?或者有什么更好的方法来开发现有的项目?还是我应该再造一次?
iugsix8n1#
将此依赖项添加到 pom.xml 在依赖项下:
pom.xml
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-oauth2-client</artifactId> </dependency>
此外,它还取决于您的需求,比如您是否需要资源服务器。
1条答案
按热度按时间iugsix8n1#
将此依赖项添加到
pom.xml
在依赖项下:此外,它还取决于您的需求,比如您是否需要资源服务器。