1. 아래에 대하여 설명하시오.
- 인증 : Check the id and password are matched or not.
- 권한 : The permission to use the website.
- 인가 : Give permission to enter with the id.
2.아래의 로그인 방법에 대하여 설명하시오.
- token 방식 : get token code from server.
- 쿠세-세션 방식 : save the cookies on the browser.
- 소셜 로그인 : login from other website id information.
3.게시판 CRUD의 모듈화에 대하여 정리 하시오?
console.log("something Module...");
let somethingService = (function() {
function somethingSelected(callback){
$.ajax({
type:"get",
url: "/something/selected",
success: function(result){
console.log(result);
if(callback){
callback(result);
}
},
error: function(e){
console.log(e);
}
});
}
return {
selected : somethingSelected
}
})();
4. 스프링 시큐리티 라이브러리 3개를 정리하시오.
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-test</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-taglibs</artifactId>
</dependency>