#JPA Query Method Repository에 // findBy까지는 규칙, Usernanme은 문법 // select * from user where username = ? 사실상 sql로 이 코드가 실행되는 것 public User findByUsername(String username); #메소드 시큐리티 @EnableGlobalMethodSecurity @EnableGlobalMethodSecurity(jsr250Enabled = true, prePostEnabled = true, securedEnabled = true) - @Secured 와 @RollAllowed 메소드 호출 이전에 권한을 확인한다. 스프링 EL을 사용하지 못한다. - @PreAuthorize 와 @PostAuthori..