为SPA前端配置Spring Boot

我有整个前端部分都放在资源中的应用程序。我想分开分开。并有单独的UI服务器,例如,由gulp提供。

因此,我假设我的服务器应该index.html为客户端呈现的所有请求返回。

例如:我有’user /:id’路由,该路由通过角度路由进行管理,不需要任何服务器。我如何配置以便服务器不会重新加载或将我重定向到任何地方?

我的安全配置如下(不知道它是否负责此类事情):

public class Application extends WebSecurityConfigurerAdapter {

@Override

protected void configure(HttpSecurity http) throws Exception {

http.antMatcher("/**").authorizeRequests().antMatchers("/", "/login**", "/webjars/**", "/app/**", "/app.js")

.permitAll().anyRequest().authenticated().and().exceptionHandling()

.authenticationEntryPoint(new LoginUrlAuthenticationEntryPoint("/")).and().logout()

.logoutSuccessUrl("/").permitAll().and().csrf()

.csrfTokenRepository(csrfTokenRepository()).and()

.addFilterAfter(csrfHeaderFilter(), CsrfFilter.class)

.addFilterBefore(ssoFilter(), BasicAuthenticationFilter.class);

}

回答:

对于路由,根据(具体在此处)的本指南Using "Natural"

Routes,您必须添加执行以下操作的控制器:

@Controller

public class RouteController {

@RequestMapping(value = "/{path:[^\\.]*}")

public String redirect() {

return "forward:/";

}

}

然后,使用Spring Boot" title="Spring Boot">Spring Boot 可以index.html加载处的负载/和资源。路线由Angular处理。

以上是 为SPA前端配置Spring Boot 的全部内容, 来源链接: utcz.com/qa/404386.html

回到顶部