without sharing, with sharing 차이

dev_jo·2022년 6월 3일
0

세일즈포스

목록 보기
1/18
post-custom-banner

with sharing

사용자 공유 규칙을 적용시킬 수 있다.
Apex code는 system context에서 실행되므로 모든 개체에 대한 접근권한을 가질 수 있으므로 with sharing 키워드를 사용하여 사용자의 접근 권한에 따라 실행하지 않도록 한다.

ex)
public with sharing class a {
	//code sample
}

without sharing

사용자 공유 규칙을 적용시키지 않고 모든 개체에 접근권한을 부여한다.

ex)
public without sharing class a {
	//code sample
}
profile
To be a better developer!!

0개의 댓글