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

org.datafx.samples.jpacrud.TestEntityCrudService Maven / Gradle / Ivy

The newest version!
package org.datafx.samples.jpacrud;

import org.datafx.controller.flow.injection.FlowScoped;
import org.datafx.controller.injection.Async;
import org.datafx.crud.jpa.SimpleJpaCrudService;

import javax.annotation.PreDestroy;

@Async
@FlowScoped
public class TestEntityCrudService extends SimpleJpaCrudService {

    public TestEntityCrudService() {
        super("DataFX-Samples", TestEntity.class);
    }

    @PreDestroy
    public void destroy() {
          super.destroy();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy