This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| MIME-Version: 1.0 | |
| Message-ID: <[email protected]> | |
| Date: Wed, 27 Oct 2021 16:58:20 +0200 (CEST) | |
| Subject: Test Summary | |
| From: [email protected] | |
| To: [email protected] | |
| Cc: | |
| Content-Type: text/calendar; charset=UTF-8; method=REQUEST | |
| --=--vertx_mail_1495539802_1635346700214_25 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package demo.plain; | |
| import org.keycloak.OAuth2Constants; | |
| import org.keycloak.admin.client.CreatedResponseUtil; | |
| import org.keycloak.admin.client.Keycloak; | |
| import org.keycloak.admin.client.KeycloakBuilder; | |
| import org.keycloak.admin.client.resource.RealmResource; | |
| import org.keycloak.admin.client.resource.UserResource; | |
| import org.keycloak.admin.client.resource.UsersResource; | |
| import org.keycloak.representations.idm.ClientRepresentation; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Exception Count [1]: javax.persistence.RollbackException: Error while committing the transaction | |
| at org.hibernate.internal.ExceptionConverterImpl.convertCommitException(ExceptionConverterImpl.java:77) | |
| at org.hibernate.engine.transaction.internal.TransactionImpl.commit(TransactionImpl.java:71) | |
| at de.emslandGroup.schnittstellenIB.cargosoft.ImportINVOICE.transferRecord(ImportINVOICE.java:368) | |
| at de.emslandGroup.schnittstellenIB.cargosoft.ImportINVOICE.access$500(ImportINVOICE.java:35) | |
| at de.emslandGroup.schnittstellenIB.cargosoft.ImportINVOICE$1.run(ImportINVOICE.java:91) | |
| Caused by: javax.persistence.PersistenceException: org.hibernate.exception.SQLGrammarException: could not execute statement | |
| at org.hibernate.internal.ExceptionConverterImpl.convert(ExceptionConverterImpl.java:149) | |
| at org.hibernate.internal.ExceptionConverterImpl.convert(ExceptionConverterImpl.java:157) | |
| at org.hibernate.internal.ExceptionConverterImpl.convertCommitException(ExceptionConverterImpl.java:61) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| docker-php-ext-install mysqli | |
| apachectl restart |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.example.rest; | |
| import de.itout.innova.ssp.entities.ssp.entities.*; | |
| import java.util.*; | |
| import javax.ejb.*; | |
| import javax.inject.*; | |
| import javax.persistence.*; | |
| import javax.ws.rs.*; | |
| import javax.ws.rs.core.*; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package com.example.rest; | |
| import javax.enterprise.context.*; | |
| import javax.enterprise.inject.Produces; | |
| import javax.persistence.*; | |
| /** | |
| * | |
| * @author swendelmann | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <persistence version="2.1" xmlns="http://xmlns.jcp.org/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd"> | |
| <persistence-unit name="SSP"> | |
| <description>Verbindung zur SSP Datenbank</description> | |
| <jta-data-source>java:jboss/datasources/sspDS</jta-data-source> | |
| <class>de.itout.innova.ssp.entities.ssp.entities.Schnittstellen</class> | |
| </persistence-unit> | |
| </persistence> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cd C:\Daten\nbprojects\test\thorntailTest; JAVA_HOME=C:\\Java\\hotspot\\jdk8u202-b08 M2_HOME=C:\\maven\\apache-maven-3.6.0 cmd /c "\"\"C:\\maven\\apache-maven-3.6.0\\bin\\mvn.cmd\" -Dmaven.ext.class.path=\"C:\\Program Files\\NetBeans 8.2\\java\\maven-nblib\\netbeans-eventspy.jar\" io.thorntail:thorntail-maven-plugin:2.3.0.Final:run\"" | |
| [INFO] Scanning for projects... | |
| [INFO] | |
| [INFO] --------------------< com.example:restful-endpoint >-------------------- | |
| [INFO] Building Thorntail Example 1.0.0-SNAPSHOT | |
| [INFO] --------------------------------[ war ]--------------------------------- | |
| [INFO] | |
| [INFO] >>> thorntail-maven-plugin:2.3.0.Final:run (default-cli) > package @ restful-endpoint >>> | |
| [INFO] | |
| [INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ restful-endpoint --- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| thorntail: | |
| datasources: | |
| data-sources: | |
| sspDS: | |
| driver-name: sqlserver | |
| connection-url: jdbc:sqlserver://localhost;databaseName=SPortal;schema=dbo | |
| user-name: sa | |
| password: sa |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <persistence version="2.1" xmlns="http://xmlns.jcp.org/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd"> | |
| <persistence-unit name="SSP" transaction-type="JTA"> | |
| <description>Verbindung zur SSP Datenbank</description> | |
| <jta-data-source>java:jboss/datasources/sspDS</jta-data-source> | |
| <provider>org.hibernate.jpa.HibernatePersistenceProvider</provider> | |
| <class>de.itout.innova.ssp.entities.ssp.entities.Schnittstellen</class> | |
| <exclude-unlisted-classes>true</exclude-unlisted-classes> | |
| <properties> | |
| <property name="hibernate.show_sql" value="true"/> |
NewerOlder