Spring Boot 프로젝트에서는 Login 페이지가 표시됩니다.
작성했습니다.Spring boot
와 함께 투영하다Spring initializer
아직까지는 스타터 코드만 가지고 있어요
샘플 코드
@SpringBootApplication
public class EcommerceApplication {
public static void main(String[] args) {
SpringApplication.run(EcommerceApplication.class, args);
}
}
@Controller
@RequestMapping(value = "/")
public class HomeController {
@GetMapping
public String index() {
return "index";
}
}
나는 그것이 그것을 돌려줄 것으로 기대한다.index.html
에서 호출하다templates
폴더입니다.대신, 저는 'Resident'로 리다이렉트 됩니다.http://localhost:8080/login
사용자 이름/비밀번호를 입력하도록 요청했습니다.에서application.properties
파일, 설정을 사용하려고 했습니다.
server.port=8080
spring.application.name=Bootstrap Spring Boot
spring.thymeleaf.cache=false
spring.thymeleaf.enabled=true
spring.thymeleaf.prefix=classpath:/templates/
spring.thymeleaf.suffix=.html
spring.datasource.driver-class-name=org.h2.Driver
spring.datasource.url=jdbc:h2:mem:bootapp;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE
spring.datasource.username=testuser
spring.datasource.password=testpassword
server.error.path=/error
server.error.whitelabel.enabled=false
사용자 이름으로 로그인을 시도했습니다.testuser
및 패스워드testpassword
이거 안 되네.
다음을 사용합니다.pom.xml
프로젝트에서는
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.online.books</groupId>
<artifactId>Ecommerce</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>jar</packaging>
<name>Ecommerce</name>
<description>Spring Boot Project</description>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.0.0.BUILD-SNAPSHOT</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<java.version>1.8</java.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-cache</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-rest</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-hateoas</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-jersey</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.session</groupId>
<artifactId>spring-session-core</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-thymeleaf</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-validation</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web-services</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-websocket</artifactId>
</dependency>
<!--<dependency>-->
<!--<groupId>com.h2database</groupId>-->
<!--<artifactId>h2</artifactId>-->
<!--<scope>runtime</scope>-->
<!--</dependency>-->
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.restdocs</groupId>
<artifactId>spring-restdocs-mockmvc</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>spring-snapshots</id>
<name>Spring Snapshots</name>
<url>https://repo.spring.io/snapshot</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
<repository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>spring-snapshots</id>
<name>Spring Snapshots</name>
<url>https://repo.spring.io/snapshot</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</pluginRepository>
<pluginRepository>
<id>spring-milestones</id>
<name>Spring Milestones</name>
<url>https://repo.spring.io/milestone</url>
<snapshots>
<enabled>false</enabled>
</snapshots>
</pluginRepository>
</pluginRepositories>
</project>
여기서 무슨 문제가 있나요?
로그인 페이지를 원하지 않는 경우(from)Spring-Security
)에서 다음 종속성을 제거합니다.pom.xml
하고 있다maven
update를 클릭하여 클래스 경로 의존 관계를 새로 고칩니다.
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
또는 를 사용하고 싶은 경우는,Spring-Security
그러면console
다음과 같이 기본 비밀번호가 표시됩니다.
Using default security password: ce6c3d39-8f20-4a41-8e01-803166bb99b6
기본 사용자 이름은user
이것이 디폴트 동작입니다.이것을 변경하려면 , 다음의 몇개의 옵션을 사용할 수 있습니다.
Spring Boot Security 의존관계를 삭제할 수 있습니다.
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
자동 설정을 실행할 수 있습니다.기본 클래스에서는 다음을 수행합니다.@SpringBootApplication
추가:(exclude = { SecurityAutoConfiguration.class })
다음과 같이 표시됩니다.
@SpringBootApplication(exclude = { SecurityAutoConfiguration.class })
public static void main(String[] args) {
SpringApplication.run(SpringBootSecurityApplication.class, args);
}
}
application.properties 파일에서도 이 작업을 수행할 수 있습니다.
자동 설정의 디세이블화 및 독자적인 설정의 상세한 것에 대하여는, 을 참조해 주세요.레퍼런스: Spring Boot Security 자동설정
spring-boot-starter-security를 포함하면 로그인 페이지가 자동으로 표시됩니다.
이 로그인 페이지를 삭제하려면 -
- Maven을 사용하는 경우 이 종속성을 제거하고 프로젝트를 재구축합니다.이미 이에 대한 몇 가지 해답이 있다.블록을 삭제합니다(pom.xml).
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
- Gradle을 사용하는 사용자가 있는 경우 의존관계 블록(build.gradle)에서 다음 블록을 삭제하고 build.gradle을 새로고침하면 됩니다.
dependencies {
//implementation 'org.springframework.boot:spring-boot-starter-security'
...
}
- pom.xml이나 build.gradle 등의 설정 파일을 변경하지 않으면 소스 코드레벨 변경이 가장 적합합니다.이렇게 하려면 를 사용하여 기본 클래스를 업데이트해야 합니다. @SpringBootApplication 주석을 @SpringBootApplication(제외 = {Security)으로 변경합니다.AutoConfiguration.class}).이 매개 변수를 제외하면 보안 구성이 제거됩니다.
@SpringBootApplication(exclude = {SecurityAutoConfiguration.class})
public class SpringCacheApplication {
public static void main(String[] args) {
...
}
...
}
- 또한 로그인 페이지를 유지하려면 생성된 보안 비밀번호를 사용하여 로그인할 수 있습니다.콘솔에는 다음과 같이 표시됩니다.생성된 보안 비밀번호 사용: d408ce6f-470d-4**4-950a-81**9651f321
{
"usename" : "user",
"password": "d408ce6f-470d-4**4-950a-81**9651f32"
}
자세한 내용은 Spring Security를 참조하십시오.
Web Security 구성에 대해 다음과 같이 프로젝트에서 클래스를 추가할 수 있습니다.
@Configuration
@EnableWebSecurity
public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
@Override
protected void configure(HttpSecurity http) throws Exception {
http
.authorizeRequests().antMatchers("/*").permitAll()
.and()
.csrf().disable();
}
}
또, 유저명으로서 「user」를 credential로서 사용해 주세요.
스프링 기능을 비활성화하려면 pom xml로 이동하여 다음 종속성을 삭제하십시오.
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
이 로그인 페이지를 비활성화하려면 클래스를 비활성화할 수 있습니다.
public class SecurityConfig extends WebSecurityConfigurerAdapter {
꼭 합니다.WebSecurityConfigurerAdapter
스타터 보안이 없는 내 코드는 여전히 로그인을 요구합니다.
해결책은 다음과 같습니다.
메인 클래스에서 자동 구성을 비활성화합니다.
@SpringBoot Application(제외= {보안}AutoConfiguration.class)
스프링 보안을 사용하고 Web Security Config를 정의한 경우 Web Security Config 클래스에 @Configuration @Enable Web Security라는2개의 주석이 있는지 확인합니다.
로그인 페이지가 표시되어 있는 경우는 보안이 활성화되어 있는 것을 의미합니다.이러한 의존관계는 pom.xml 에서 코멘트 또는 삭제해 주세요.
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-test</artifactId>
<scope>test</scope>
</dependency>
또는 다음과 같이 입력합니다.
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
또는 다음과 같이 입력합니다.
<dependency>
<groupId>org.thymeleaf.extras</groupId>
<artifactId>thymeleaf-extras-springsecurity5</artifactId>
</dependency>
같은 문제가 발생했는데 SecurityConfig 파일에 @Configuration 및 @EnableWebSecurity 주석이 없기 때문입니다.
언급URL : https://stackoverflow.com/questions/46265775/spring-boot-project-shows-the-login-page
'programing' 카테고리의 다른 글
Angular, React 및 Blaze(클라이언트 측 Meteor)의 주요 설계 차이는 무엇입니까? (0) | 2023.03.23 |
---|---|
Jenkins REST API - 트리를 사용하여 JSON 배열의 특정 항목을 참조합니다. (0) | 2023.03.23 |
ng-option을 사용하여 선택 요소의 기본값을 설정하는 방법 (0) | 2023.03.23 |
jQuery ui 날짜 선택기(Angularjs 포함) (0) | 2023.03.23 |
VIM에서 저장 시 JSON을 자동 포맷하는 방법 (0) | 2023.03.23 |