Hibernate does not fetch ManyToMany relation data

I am trying to read data from the database, using Hibernate.
I have following data model, which holds some user credentials data, split into several entities, with Entity C holding User authorization roles (user can have more than 1 role, hence ManyToMany):

A -> OneToOne -> B <- ManyToMany -> C

as written:

@Entity
public class A {
    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private Long id;
    private String s1;
    private String s2;
//getters, setters, etc.
}
@Entity
public class B {
    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private Long id;
    private String s1;
    private String s2;
    @OneToOne(cascade = CascadeType.REMOVE,
            fetch = FetchType.LAZY)
    private A aElement;
    @ManyToMany(targetEntity = C.class,
                fetch = FetchType.EAGER,
                cascade = CascadeType.ALL)
    @JoinTable(
            name = "b_x_c",
            joinColumns = @JoinColumn(table = "b", referencedColumnName = "id"),
            inverseJoinColumns = @JoinColumn(table = "c", referencedColumnName = "id")
    )
    private Set<C> cSet;
//getters, setters, etc.
}
@Entity
public class C {
    @Id
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    private Long id;
    private String name;
    private String description;
    @ManyToMany(targetEntity = B.class,
            mappedBy = "cSet",
            cascade = CascadeType.ALL,
            fetch = FetchType.EAGER)
    private Set<B> bSet;
//getters, setters, etc.
}

I did write a CustomUserDetailService (using Spring Security for authorizaiton) for some user tweaking:

@Service
public class CustomUserDetailsService implements UserDetailsService {
    private final LoginService loginService ;

    public CustomUserDetailsService(LoginService loginService ) {
        this.loginService = loginService ;
    }

    @Override
    public UserDetails loadUserByUsername(String s) throws UsernameNotFoundException {
        return loginService.findCredentialsByS1(s)
                .map(this::createUserDetails)
                .orElseThrow(() -> new UsernameNotFoundException("no user found"));
    }

    private UserDetails createUserDetails(B credentials) {
        return User.builder()
                .username(credentials.getS1())
                .password(credentials.getS2())
                .roles(credentials.getCSet().toArray(String[]::new))
                .build();
    }
}

loginService is:

@Service
public class LoginService {
    public final BRepository bRepository;

    public ClientLoginService(BRepository bRepository) {
        this.bRepository = bRepository;
    }

    public Optional<B> findCredentialsByS1(String s) {
        return bRepository.findByS1IgnoreCase(s);
    }
}

and BRepository:

public interface BRepository extends JpaRepository<B, Long> {
        Optional<B> findByS1IgnoreCase(String s);
}

Now, when I login a User, CustomUserDetailsService is being invoked and loadUserByUsername() called, through which a Repository executes a call to the database, but somehow, the contents of C table are not loaded (they are properly connected in the intermediate (connector) database). Data of A table are being loaded, but C table not – and no error is given. What can be a reason here? I don’t quite understand why, especially that when I turn on Hibernate logging, and look into the queries that are being given, it should actually provide correct data, but debugging loadUserByUsername shows, that it’s empty.

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật