All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bloomscorp.aster.behemoth.AsterCRUDDAOController Maven / Gradle / Ivy

Go to download

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