com.bloomscorp.aster.behemoth.AsterCRUDDAOController Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bmx-aster Show documentation
Show all versions of bmx-aster Show documentation
Base package with managed dependencies for a single vendor e-commerce platform.
This is an opinionated version of Spring Boot configuration with added as-is dependency configurations.
The newest version!
package com.bloomscorp.aster.behemoth;
import com.bloomscorp.behemoth.dao.controller.BehemothCRUDDAOController;
import com.bloomscorp.behemoth.orm.BehemothORM;
import org.springframework.data.jpa.repository.JpaRepository;
public class AsterCRUDDAOController<
E extends BehemothORM,
R extends JpaRepository
> extends BehemothCRUDDAOController {
public AsterCRUDDAOController(R repository) {
super(repository);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy