spring boot 自定义登录页面
Posted
技术标签:
【中文标题】spring boot 自定义登录页面【英文标题】:spring boot custom login page 【发布时间】:2016-10-31 12:01:44 【问题描述】:我正在尝试为我的引导应用程序添加一个自定义登录页面。我正在关注this 教程。我无法使用我的自定义登录页面。
这是我的 pom.xml:
...
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-commons</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<scope>test</scope>
</dependency>
...
MvcConfig.java
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.config.annotation.ViewControllerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurerAdapter;
@Configuration
public class MvcConfig extends WebMvcConfigurerAdapter
@Override
public void addViewControllers(ViewControllerRegistry registry)
registry.addViewController("/").setViewName("forward:/index.html");
registry.addViewController("/login").setViewName("login");
前端应用程序.java:
import org.slf4j.LoggerFactory;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.annotation.Import;
import ch.qos.logback.classic.Logger;
@SpringBootApplication
@Import(value = MvcConfig.class)
public class FrontendApp
private static Logger logger = (Logger) LoggerFactory.getLogger(FrontendApp.class);
public static void main(String[] args)
SpringApplication app = new SpringApplication(FrontendApp.class);
app.run(args);
SecurityConfiguration.java
@Configuration
@EnableWebSecurity
@EnableGlobalMethodSecurity(prePostEnabled = true, securedEnabled = true)
public class SecurityConfiguration extends WebSecurityConfigurerAdapter
@Autowired
private CustomAuthenticationProvider customAuthenticationProvider;
@Autowired
@Override
protected void configure(AuthenticationManagerBuilder auth) throws Exception
auth.authenticationProvider(this.customAuthenticationProvider);
@Override
protected void configure(HttpSecurity http) throws Exception
http
.authorizeRequests()
.antMatchers("/css/**").permitAll()
.antMatchers("/resources/**").permitAll()
.antMatchers("**").permitAll()
.antMatchers("/login").permitAll()
.anyRequest().authenticated().and()
.formLogin()
.loginPage("/login");
我打开了所有的 url,所以我可以检查我是否可以看到 /login。 CustomAuthenticationProvider.java
@Component
public class CustomAuthenticationProvider implements AuthenticationProvider
private static final Logger logger = LoggerFactory.getLogger(CustomAuthenticationProvider.class);
public CustomAuthenticationProvider()
logger.info("*** CustomAuthenticationProvider created");
@Override
public boolean supports(Class<?> authentication)
return UsernamePasswordAuthenticationToken.class.isAssignableFrom(authentication);
@Override
public Authentication authenticate(Authentication authentication) throws AuthenticationException
if(authentication.getName().equals("karan") && authentication.getCredentials().equals("saman"))
List<GrantedAuthority> grantedAuths = new ArrayList<>();
grantedAuths.add(new SimpleGrantedAuthority("ROLE_USER"));
grantedAuths.add(new SimpleGrantedAuthority("ROLE_ADMIN"));
return new UsernamePasswordAuthenticationToken(authentication.getName(), authentication.getCredentials(), grantedAuths);
else
return null;
当我尝试 localhost:8080/login 时,我会收到以下错误:
Whitelabel Error Page
This application has no explicit mapping for /error, so you are seeing this as a fallback.
There was an unexpected error (type=Internal Server Error, status=500).
Error resolving template "login", template might not exist or might not be accessible by any of the configured Template Resolvers
但是,当我尝试 localhost:8080/ 时,它将成功重定向到我在 MvcConfig.java 中指定的 index.html。
这是我的 login.html 代码:
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:th="http://www.thymeleaf.org"
xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity3"
xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout">
<head>
<meta charset="utf-8" />
<title>k</title>
</head>
我将我的 login.html 粘贴到 /src/main/resources/templates 和 /src/main/webapp/ 和 /src/main/webapp/templates 中,它仍然无法正常工作!
【问题讨论】:
您查看控制器配置必须拦截“登录”请求并重定向到不存在的“登录”页面,因此出现错误。这是绕过百里香视图解析器。您是否尝试过从 MvcConfig 中删除行:registry.addViewController("/login").setViewName("login");
?
@FinbarrO'Brien 是的,试过了。事实上,我尝试添加其他类似 login1 的内容并将相应的 login1.html 放入模板中,但我也遇到了同样的错误。
您是将应用程序构建为war 文件还是可执行jar?
@FinbarrO'Brien 我正在使用嵌入式 Tomcat 并将其构建为可执行 jar。
【参考方案1】:
好的,所以这是 pom.xml 中的一个简单错误。
<!--<resources>-->
<!--<resource>-->
<!--<directory>src/main/resources</directory>-->
<!--<includes>-->
<!--<include>*</include>-->
<!--</includes>-->
<!--<filtering>true</filtering>-->
<!--</resource>-->
<!--</resources>-->
在我从 pom 文件中注释掉这些(如您所见)后,它工作得很好。至少上面的代码可能对其他人有用。
【讨论】:
以上是关于spring boot 自定义登录页面的主要内容,如果未能解决你的问题,请参考以下文章
Spring boot 用户自定义访问控制,自定义登录页面,退出,用户信息获取
无法在 Spring Boot Security 中登录到我的自定义登录页面
Spring Boot Security 自定义登录页面未加载
spring boot整合 spring security之自定义认证
Keycloak 与 Spring boot 集成,使用自定义登录页面(在没有 keycloak 的默认登录页面的情况下登录)