일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- Absolute
- AGI
- ai
- AI agents
- AI engineer
- AI researcher
- ajax
- algorithm
- Algorithms
- aliases
- Array 객체
- ASI
- bayes' theorem
- Bit
- Blur
- BOM
- bootstrap
- canva
- challenges
- ChatGPT
- Today
- In Total
목록Spring Security (4)
A Joyful AI Research Journey🌳😊
230416 스프링 시큐리티를 이용해서 회원가입 후 로그인 하는 데 계속 아래 오류가 떴었다. No default constructor for entity: : com.example.demo.model.User 해결책은 내가 만든 User.java에 //adding a default constructor with no arguments to the User class //will allow Hibernate to instantiate objects of the class during database queries public User() { } 이 코드를 적어서 default를 지정해주는 것이다. User 클래스에 arguments가 없는 기본 생성자를 추가하면 Hibernate가 클래스의 객체를 인스턴..
230411 스프링 시큐리티를 사용할 때 권한 지정에 따라 보여지는 파일이 다른데, 포트폴리오를 만들면서 로그인 하기 전에는 이미지, 비디오가 안 보이고 로그인 후에는 이미지, 비디오가 보이는 것이었다. 전체가 다 보이게 설정하는 것은 SecutiryConfiguration.java의 제일 하단 코드에 @Override protected void configure(HttpSecurity http) throws Exception { .antMatchers("/파일**").permitAll() 로 지정한다. 사용한 코드) @Override protected void configure(HttpSecurity http) throws Exception { http.authorizeRequests() //added..
230411 로그인 성공 후에 원하는 페이지 이동하려면 아래 코드를 쓴다. .defaultSuccessUrl("/index.html", true) 여기 있는 코드는 SecurityConfiguration.java 제일 하단에 있는 코드이다. @Override protected void configure(HttpSecurity http) throws Exception { http.authorizeRequests() .antMatchers("/","/index**","/assets**","/registration**", "/js/**", "/css/**", "/img/**", "/image/**", "/video/**","/login?error").permitAll() .anyRequest().authent..
https://medium.com/@gustavo.ponce.ch/spring-boot-spring-mvc-spring-security-mysql-a5d8545d837d Spring Boot + Spring MVC + Spring Security + MySQL Important → The code has been updated to support Spring Boot 2.2.2, java 11, implement UserDetailService strategy and resolve minor/major… medium.com https://dev-splin.github.io/spring/Spring-Security-UsedDB-Login-And-Register/ Spring : Spring Security..