Questions tagged [lightadmin]

Pluggable CRUD administration UI library for Java web applications powered by Spring Boot.

The primary goal of the project is to speed up application development by bringing pluggable fully operational CRUD UI for JPA based web applications.

To find more information:

17 questions
0
votes
1 answer

Lightadmin and RepositoryNotFoundException while saving an entity

JPA entity class: @Entity(name="job_configuration") public class JobConfiguration extends AbstractEntity { String name; @Lob String value; @ManyToOne @JoinColumn(name="job_id") Job job; } Lightadmin administration…
Adam Siemion
  • 15,569
  • 7
  • 58
  • 92
0
votes
1 answer

Make HSQL database persistent in LightAdmin (Spring/JPA/Hibernate)

I am trying to change the default LightAdmin setup that uses an in-memory HSQL database to use a file HSQL database. persistence.xml:
Adam Siemion
  • 15,569
  • 7
  • 58
  • 92
1
2