sql >> Base de Datos >  >> RDS >> PostgreSQL

Insertar la columna json de Postgres usando wildfly

Agregando org.postgres dependencia al manifiesto de guerra me resolvió el problema.

Aquí hay un maven fragmento:

<build>
    <plugins>
        <plugin>
            <artifactId>maven-war-plugin</artifactId>
            <configuration>
                <archive>
                    <manifestEntries>
                        <Dependencies>org.postgres</Dependencies>
                    </manifestEntries>
                </archive>
            </configuration>
        </plugin>
    </plugins>
</build>

Y aquí está el MANIFEST.MF generado (ver la última línea):

Manifest-Version: 1.0
Archiver-Version: Plexus Archiver
Built-By: dedek
Created-By: Apache Maven 3.3.3
Build-Jdk: 1.8.0_51
Dependencies: org.postgres