Skip to content
View dstrelec's full-sized avatar
Block or Report

Block or report dstrelec

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
dstrelec/README.md
  • 👋 Hi, I’m @dstrelec
  • 👀 I’m interested in ...
  • 🌱 I’m currently learning ...
  • 💞️ I’m looking to collaborate on ...
  • 📫 How to reach me ...

Pinned

  1. Spring Data JPA server side filtering Spring Data JPA server side filtering
    1
    @Entity
    2
    @Table(name = "customer")
    3
    public class Customer {
    4
    
                  
    5
      @Id
  2. String DTO Converter String DTO Converter
    1
    import org.springframework.core.convert.converter.Converter;
    2
    import org.springframework.data.domain.Page;
    3
    import org.springframework.data.domain.PageImpl;
    4
    
                  
    5
    import java.util.List;
  3. CDI startup hook CDI startup hook
    1
    @ApplicationScoped
    2
    public class MyBean {
    3
    
                  
    4
        void onStart(@Observes @Initialized(ApplicationScoped.class) final Object event) {
    5
            // do something on startup
  4. nats nats Public

    Provides Familiar Spring Abstractions for NATS messaging system

    Java