提问者:小点点

如何在Jhipster(Spring引导角)应用程序上设置上下文路径


我生成了一个Jhipster项目经典的Spring Auth Angular客户端应用程序。

我只需要在Jhipster应用程序上设置自定义上下文路径“网关”

在服务器上,我刚刚在文件“src\main\Resources\config\application ation-dev. yml”上设置:

.....
server:
  port: 8080
  servlet:
     context-path: /gateway
...

在棱角分明的客户端上,我不明白如何设置这个。

在文件“webpack\webpack.公共. js”上设置:

....
new webpack.DefinePlugin({
    'process.env': {
        NODE_ENV: `'${options.env}'`,
        BUILD_TIMESTAMP: `'${new Date().getTime()}'`,
        // APP_VERSION is passed as an environment variable from the Gradle / Maven build tasks.
        VERSION: `'${process.env.hasOwnProperty('APP_VERSION') ? process.env.APP_VERSION : 'DEV'}'`,
        DEBUG_INFO_ENABLED: options.env === 'development',
        // The root URL for API calls, ending with a '/' - for example: `"https://www.jhipster.tech:8081/myservice/"`.
        // If this URL is left empty (""), then it will be relative to the current context.
        // If you use an API server, in `prod` mode, you will need to enable CORS
        // (see the `jhipster.cors` common JHipster property in the `application-*.yml` configurations)
        SERVER_API_URL: `'http://localhost:8080/gateway/'`
    }
}),
......        
new BaseHrefWebpackPlugin({ baseHref: '/gateway' })
....

但它不起作用,登录总是失败。我错过了什么?

Gaël Marziou评论的更新

似乎来自客户端“http://localhost:9000/gateway/”的登录未能登录到代码为403的服务“http://localhost:8080/gateway/api/authentication”,因为服务器上有一些csfr异常:

已解决[org.springframework.security. web.csrf.MissingCsrfTokenException:无法验证提供的CSRF令牌,因为未找到您的会话。]

所以这可能是Spring boot的安全配置出现了一些错误:

    @Override
    public void configure(HttpSecurity http) throws Exception {
        // @formatter:off
        http
            .csrf()
            .csrfTokenRepository(CookieCsrfTokenRepository.withHttpOnlyFalse())
        .and()
            .addFilterBefore(corsFilter, CsrfFilter.class)
            .exceptionHandling()
                .authenticationEntryPoint(problemSupport)
                .accessDeniedHandler(problemSupport)
        .and()
            .rememberMe()
            .rememberMeServices(rememberMeServices)
            .rememberMeParameter("remember-me")
            .key(jHipsterProperties.getSecurity().getRememberMe().getKey())
        .and()
            .formLogin()
            .loginProcessingUrl("/api/authentication")
            .successHandler(ajaxAuthenticationSuccessHandler())
            .failureHandler(ajaxAuthenticationFailureHandler())
            .permitAll()
        .and()
            .logout()
            .logoutUrl("/api/logout")
            .logoutSuccessHandler(ajaxLogoutSuccessHandler())
            .permitAll()
        .and()
            .headers()
            .contentSecurityPolicy("default-src 'self'; frame-src 'self' data:; script-src 'self' 'unsafe-inline' 'unsafe-eval' https://storage.googleapis.com; style-src 'self' 'unsafe-inline'; img-src 'self' data:; font-src 'self' data:")
        .and()
            .referrerPolicy(ReferrerPolicyHeaderWriter.ReferrerPolicy.STRICT_ORIGIN_WHEN_CROSS_ORIGIN)
        .and()
            .featurePolicy("geolocation 'none'; midi 'none'; sync-xhr 'none'; microphone 'none'; camera 'none'; magnetometer 'none'; gyroscope 'none'; speaker 'none'; fullscreen 'self'; payment 'none'")
        .and()
            .frameOptions()
            .deny()
        .and()
            .authorizeRequests()
            .antMatchers("/**/api/authenticate").permitAll()
            .antMatchers("/**/api/register").permitAll()
            .antMatchers("/**/api/activate").permitAll()
            .antMatchers("/**/api/account/reset-password/init").permitAll()
            .antMatchers("/**/api/account/reset-password/finish").permitAll()
            .antMatchers("/**/api/**").authenticated()
            .antMatchers("/**/management/health").permitAll()
            .antMatchers("/**/management/info").permitAll()
            .antMatchers("/**/management/prometheus").permitAll()
            .antMatchers("/**/management/**").hasAuthority(AuthoritiesConstants.ADMIN);
        // @formatter:on
    }

共1个答案

匿名用户

我发现以下5个地方。

webpack.通用. js

new BaseHrefWebpackPlugin({ baseHref: '/gateway/' })

webpack.dev. js

proxy: [{
    context: [
        '/gateway/api',
        '/gateway/services',
       ...

app. context.ts

export const SERVER_API_URL = process.env.SERVER_API_URL + "/gateway/";

资源\配置\应用程序-dev. y ml

.....
server:
  port: 8080
  servlet:
     context-path: /gateway

index. html

<base href="/gateway/" />

相关问题