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
5
votes
1 answer

Javascript CRUD Admin for Spring-Data HATEOAS backend

We are using a Spring-Boot Spring-Data backend that utilizes JPARepositories with the @RepositoryRestResource annotation. We would like to administer the tables in these repositories (e.g. CRUD) through a javascript frontend without having to go…
user5804636
1
vote
1 answer

java.lang.IllegalArgumentException: At least one JPA metamodel must be present

I Integrate the LightAdmin Plugging in my spring boot project,but Run this project throw the Exception. Exception is At least one JPA metamodel must be present. I Basically add the springjpa dependency spring-boot-starter-data-jpa in pom.xml, but…
Ng Sharma
  • 2,072
  • 8
  • 27
  • 49
1
vote
0 answers

java.lang.NullPointerException in Lightadmin plugin

I am trying to integrate lightadmin plugin in my online-test application for CRUD implementation, and facing following null pointer exception. java.lang.NullPointerException …
1
vote
1 answer

Error on pom.xml with Light Admin

I got the error on below code of pom.xml file. org.lightadmin lightadmin 1.0.0.M3-SNAPSHOT The error message is as below : Missing…
Chetan Nakum
  • 413
  • 6
  • 19
1
vote
1 answer

Integrating lightadmin into wildfly

I've been trying to get lightadmin up running with my wildfly 8.1 setup. I've got a wildfly 8.1 running with entities which i would like to display in a UI. I've got no UI/web in the wildfly prior to trying to integrate lightadmin. Im using maven…
jka_dk
  • 421
  • 1
  • 4
  • 17
1
vote
0 answers

Override delete method LightAdmin using Listener. Its possible?

I'm using Lightadmin http://lightadmin.org/ crud framework in my Spring MVC project. I was searching the way to override the "delete method" because I want to do a "soft delete" , I have a field in my entities called "deleted". When I press Delete…
TSW1985
  • 1,179
  • 2
  • 10
  • 13
0
votes
1 answer

light admin configuration with spring

I wanted to use light admin with spring boot. My project is working fine intially but when when i am adding dependency into pom.xml 1.2.0.RC1 dependency> org.lightadmin
0
votes
1 answer

Spring Boot Package to war: Tests fail

I'm attempting to package my Spring Boot app as a war file, so that I can use LightAdmin (which has a limitation of only working for Spring Boot apps using traditional war packaging). I'm trying to run the mvn package goal, but it fails at the test…
0
votes
2 answers

Spring MVC LightAdmin configuration

I'm trying to setup LightAdmin page for my web application, I'm following https://github.com/la-team/light-admin. After following this step a see this error: 14:36:55.705 [localhost-startStop-1] DEBUG o.s.b.f.s.DefaultListableBeanFactory -…
Lenusska1414
  • 171
  • 4
  • 15
0
votes
1 answer

LightAdmin Spring configuration

I'm following the LightAdmin site while configuring admin page for my site. There is the following code: light:administration:base-package [package with Administration Configurations, ex.:…
Lenusska1414
  • 171
  • 4
  • 15
0
votes
1 answer

Logging operations in lightadmin

I have a Java web application which use Spring and Hibernate and I plan to use lightadmin to provide an administration interface. However, I found very little information about the logging part of lightadmin : if I have such an adminsitration…
gvo
  • 845
  • 1
  • 14
  • 22
0
votes
1 answer

LightAdmin - Customise parsing DateTime with app timezone

I am using LightAdmin 1.1.0.Snapshot with Spring Boot. I am using Joda DateTime to represent time with zone. I can see LightAdmin captures date-time in UTC and Default Deserialization context used for parsing data is by UTC in LightAdmin. From…
0
votes
1 answer

How to control table access in Lightadmin?

I'm building a back-office application using Spring Boot and Lightadmin. I'd like to limit creation/editing/deletion for some tables (maybe by obscuring respective buttons). Is there a Java configuration to achieve this?
Orestis
  • 36
  • 6
0
votes
2 answers

How to solve 'error creating bean' with LightAdmin?

org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'excursionDynamicJpaRepository': Invocation of init method failed; nested exception is java.lang.TypeNotPresentException: Type int not present at…
Dracontis
  • 4,184
  • 8
  • 35
  • 50
0
votes
3 answers

Change Jackson date formatting setting in spring data rest webmvc

Lightadmin for timestamp fields such as: @Temporal(TemporalType.TIMESTAMP) @Column(name="started_at") Date startedAt; does not format them but shows them as the number of milliseconds since the epoch, e.g. 1398940456150. When you enter a…
Adam Siemion
  • 15,569
  • 7
  • 58
  • 92
1
2