地理服务器 OAuth 2.0
GeoServer OAuth 2.0
有人使用 OAuth 来验证 GeoServer 用户吗?我已经安装和配置了这个 extension. I've tried Google and GitHub providers. I end up with a 404 error trying to access the login page. Same issue as here。日志中没有错误,调试级别已按照建议提升。
在这里回答我自己的问题...
对我来说,404 问题是通过使用 maven 插件从源代码构建并考虑所需的依赖项来解决的。以前,我试图使用预构建的二进制文件和 lib/ depedencies。
我从源代码 (2.18.3) 构建了模块并修改了文件 maven 文件以将依赖项复制到目标文件夹,然后我将其复制到 WEB-INF/lib。
这是我为获取依赖项而添加的 pom 文件。
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.8</version>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>prepare-package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/classes/lib</outputDirectory>
<includeScope>runtime</includeScope>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
有人使用 OAuth 来验证 GeoServer 用户吗?我已经安装和配置了这个 extension. I've tried Google and GitHub providers. I end up with a 404 error trying to access the login page. Same issue as here。日志中没有错误,调试级别已按照建议提升。
在这里回答我自己的问题...
对我来说,404 问题是通过使用 maven 插件从源代码构建并考虑所需的依赖项来解决的。以前,我试图使用预构建的二进制文件和 lib/ depedencies。
我从源代码 (2.18.3) 构建了模块并修改了文件 maven 文件以将依赖项复制到目标文件夹,然后我将其复制到 WEB-INF/lib。
这是我为获取依赖项而添加的 pom 文件。
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.8</version>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>prepare-package</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${project.build.directory}/classes/lib</outputDirectory>
<includeScope>runtime</includeScope>
</configuration>
</execution>
</executions>
</plugin>
</plugins>