Thanks. You are great.
El martes, 28 de enero de 2020 7:44:42 GMT-6, Nikita Timofeev
escribió:
Hi,
You shouldn't inject an adapter in the constructor, it's not in DI
container directly. Try to define only default constructor:
public PcExpressPosUUIDPkGenerator() {
super();
}
On
Hi,
You shouldn't inject an adapter in the constructor, it's not in DI
container directly. Try to define only default constructor:
public PcExpressPosUUIDPkGenerator() {
super();
}
On Tue, Jan 28, 2020 at 4:28 AM Juan Manuel Diaz Lara
wrote:
>
> My DB is postgres, how can I contribute/repla
My DB is postgres, how can I contribute/replace de PostgresPkGenerator with my
own implementation to genera UUID's as PK's:
public class PcExpressPosUUIDPkGenerator extends PostgresPkGenerator {
public PcExpressPosUUIDPkGenerator(@Inject PostgresAdapter adapter) {
super(adapter);
}