Skip to content

Instantly share code, notes, and snippets.

View dmitry-osin's full-sized avatar

Dmitry Osin dmitry-osin

  • Haulmont LTD
  • Moscow, Russia
View GitHub Profile
<?xml version="1.0" encoding="UTF-8" standalone="no"?><root><taxonomy name="NCBI"><term externalId="NCBI-131567"><synonym uniqueName="Bacteria &lt;prokaryotes&gt;">Bacteria</synonym><synonym uniqueName="Monera &lt;Bacteria&gt;">Monera</synonym><synonym uniqueName="Procaryotae &lt;Bacteria&gt;">Procaryotae</synonym><synonym uniqueName="Prokaryota &lt;Bacteria&gt;">Prokaryota</synonym><synonym uniqueName="Prokaryotae &lt;Bacteria&gt;">Prokaryotae</synonym><synonym uniqueName="bacteria &lt;blast2&gt;">bacteria</synonym><synonym uniqueName="">eubacteria</synonym><synonym uniqueName="prokaryote &lt;Bacteria&gt;">prokaryote</synonym><synonym uniqueName="prokaryotes &lt;Bacteria&gt;">prokaryotes</synonym></term><term externalId="NCBI-335928"><synonym uniqueName="">Azorhizobium</synonym><synonym uniqueName="">Azorhizobium Dreyfus et al. 1988 emend. Lang et al. 2013</synonym></term><term externalId="NCBI-6"><synonym uniqueName="ATCC 43989 &lt;type strain&gt;">ATCC 43989</synonym><synonym uniqueName="">Azorhizobium cau
Internal Exception
REST service call failed
com.wiley.gts.bce.common.remoting.client.BceRestTemplateResponseErrorHandler.handleError(BceRestTemplateResponseErrorHandler.java:53)
org.springframework.web.client.RestTemplate.handleResponse(RestTemplate.java:700)
org.springframework.web.client.RestTemplate.doExecute(RestTemplate.java:653)
org.springframework.web.client.RestTemplate.execute(RestTemplate.java:613)
org.springframework.web.client.RestTemplate.exchange(RestTemplate.java:559)
com.wiley.gts.bce.common.remoting.client.BceRestOperations.exchange(BceRestOperations.java:105)
com.wiley.gts.entity.service.controller.impl.v3.ProductV3ControllerImpl.getProducts(ProductV3ControllerImpl.java:267)
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<exception>
<errorCode>1</errorCode>
<exceptionClass>com.temis.tsl.ApplicationException</exceptionClass>
<localizedMessage>com.temis.text.remote.essex.SimpleWebApplicationException: ESSEX returned the following error: Error while loading disambiguator extension (code 8)</localizedMessage>
<message>com.temis.text.remote.essex.SimpleWebApplicationException: ESSEX returned the following error: Error while loading disambiguator extension (code 8)</message>
<stackTraces>
script.tsl:592: com.temis.text.remote.essex.SimpleWebApplicationException: ESSEX returned the following error: Error while loading disambiguator extension (code 8)
at com.temis.tsl.ApplicationException.throwException(ApplicationException.java:24)
at com.temis.tsl.ReflectionHelper.invokeMethod(ReflectionHelper.java:323)
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<exception>
<errorCode>1</errorCode>
<exceptionClass>com.temis.tsl.ApplicationException</exceptionClass>
<localizedMessage>com.temis.text.remote.essex.SimpleWebApplicationException: ESSEX returned the following error: instance communication timeout (code 10)</localizedMessage>
<message>com.temis.text.remote.essex.SimpleWebApplicationException: ESSEX returned the following error: instance communication timeout (code 10)</message>
<stackTraces>
script.tsl:592: com.temis.text.remote.essex.SimpleWebApplicationException: ESSEX returned the following error: instance communication timeout (code 10)
at com.temis.tsl.ApplicationException.throwException(ApplicationException.java:24)
at com.temis.tsl.ReflectionHelper.invokeMethod(ReflectionHelper.java:323)
CogitoKnowledgeHelper synthesis = doc.getDocHelper().getKnowledgeHelper("AGU-Concept Set");
if (synthesis != null) {
synthesis.getDescriptors(d -> d.getType().startsWith("/ConceptPath/Entity/GeoAge"))
.stream()
.forEach(d -> {
d.addAttribute("taxonomyIdDD", "aaaaaaaa7777777");
});
synthesis.getDescriptors(d -> d.getType().startsWith("/ConceptPath/Entity/Location"))
.stream()
package pw.osin.example.data;
import pw.osin.example.model.Tweet;
import javax.persistence.EntityManager;
import javax.persistence.Persistence;
import javax.persistence.PersistenceContext;
import javax.persistence.TypedQuery;
import java.util.List;
public List<Tweet> findByQuery(String query) {
final TypedQuery<Tweet> typedQuery = getEntityManager().createNamedQuery(Tweet.FIND_BY_QUERY, Tweet.class);
typedQuery.setParameter("query", query);
return typedQuery.getResultList();
}
package pw.osin.example.data;
import pw.osin.example.model.Tweet;
import javax.persistence.EntityManager;
import javax.persistence.Persistence;
import javax.persistence.PersistenceContext;
import javax.persistence.TypedQuery;
import java.util.List;
package pw.osin.example.data;
import javax.persistence.EntityManager;
import javax.persistence.EntityTransaction;
import javax.persistence.TypedQuery;
import java.util.Collection;
import java.util.List;
public abstract class AbstractJPADataAccess<TKey, TEntity> implements DataAccess<TKey, TEntity> {
public List<TEntity> findAll() {
final TypedQuery<TEntity> query = getEntityManager().createQuery(String.format("SELECT entity FROM %s entity",
getType().getSimpleName()), getType());
return query.getResultList();
}
public List<TEntity> findAll(int size, int offset) {
final TypedQuery<TEntity> query = getEntityManager().createQuery(String.format("SELECT entity FROM %s entity",
getType().getSimpleName()), getType());
query.setFirstResult(offset);