如何在Jhipster(spring boot + angular)应用程序上设置上下文路径

问题描述 投票:0回答:1

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

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

在服务器上,我只是在文件“ src \ main \ resources \ config \ application-dev.yml”上设置:

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

在有角度的客户端上,我不知道如何设置它。

在文件“ webpack \ webpack.common.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ëlMarziou评论的更新

似乎来自客户端“ http://localhost:9000/gateway/”的登录无法使用代码403登录到服务“ http://localhost:8080/gateway/api/authentication”,因为服务器上存在某些csfr异常:

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

所以这可能是弹簧启动的安全性配置上的一些错误:

    @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
    }
angular spring-boot jhipster contextpath
1个回答
0
投票

我发现了以下5个地方。

webpack.common.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/";

resources \ config \ application-dev.yml

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

index.html

<base href="/gateway/" />
© www.soinside.com 2019 - 2024. All rights reserved.