I’ve been trying to build an app with JHipster that can use some advanced filtering, in particular ElasticSearch. Why does it fail when I run it out of the box, without even editing the project ? I am running the following software in Windows 10: Java v15.0.2 node v14.17.4 NPM 6.14.14 Same happens in Ubuntu with: Java v17.0.1 node v16.14.0
Tag: jhipster
JHipster React Show List Of One Entity in Details Screen of Another Related Entity
I am attempting an application in JHipster 7.0.1 (Azul JDK 11) and ReactJS as the front-end. I have 2 entities in my JDL – Domain and BadgeCategory that are related as shown below I want to be able to display all the BadgeCategories for a particular Domain in the Domain Detail screen. For this, I created a new method in
How I can specify the version of JDK for travis CI
I have the file .travis.yml generated by JHipster and I would like to use adopt open jdk 12 for travis, but I can not set it. os: – linux services: – docker language: java matrix: include: -…
Jhipster4: what are the benefits of using DTO
Jhipster4 adds Data Transfer Objects (DTO) just what is the benefit of using DTO objects? Answer Main benefit is to control more precisely which properties you expose from your entities and also to expose entity aggregates rather than single entities.
Spring boot Active Directory/LDAP connection
I already connect with AD from spring boot for login purposes but i can not mak searches. My configuration is @Configuration public class LdapTemplateConfig { @Bean public LdapTemplate …