November 2017
Intermediate to advanced
542 pages
14h 24m
English
At this point, we have seen a reference to th with the aclService ID twice. The aclService ID resolves to an implementation of o.s.s.acls.model.AclService that is responsible (through delegation) for translating information about the object being secured by ACLs into expected ACEs:
src/main/java/com/packtpub/springsecurity/configuration/AclConfig.java@Autowired private DataSource dataSource;@Beanpublic JdbcMutableAclService aclService(){
return new JdbcMutableAclService(dataSource, lookupStrategy(), aclCache());}
We'll use o.s.s.acls.jdbc.JdbcMutableAclService, which is the default implementation of o.s.s.acls.model.AclService. This implementation comes out of the box and is ready to use the schema that we ...
Read now
Unlock full access