Questions tagged [isis]

Java framework for rapid development of domain driven applications

Apache Isis is a Java framework for rapidly developing domain driven applications.

Write your business logic in entities, domain services and repositories, and the framework dynamically generates a representation of that domain model as a webapp or a RESTful API.

For prototyping or production.

106 questions
4
votes
1 answer

Apache ISIS isis-module-security default user/password

What is the proper way to either delete, disable or at least change the default password of the 'isis-module-security-admin' by means of code or configuration?
user5806139
  • 531
  • 6
  • 14
4
votes
1 answer

Apache Isis Security Module: Required table missing : "ISISSECURITY.APPLICATIONROLE"

I created an application using the apache isis simpleapp-archetype and then added the dependencies (isis-module-security-dom and jbcrypt) of the security module to my pom.xml's and the modules and services to my DomainAppAppManifest. After running…
mwhs
  • 5,878
  • 2
  • 28
  • 34
3
votes
2 answers

Unable to inject service in Apache isis quartz

I am using quartz in my apache isis project for scheduling. I have a class MyJob which implements org.quartz.Job and it has method execute which is called when scheduler triggers at given time. My problem is, I have a class DemoService and it has a…
Siddhesh Phatak
  • 198
  • 1
  • 2
  • 11
3
votes
1 answer

Is there a way to generate CRUD actions dynamically for my domain objects?

By following the Apache Isis tutorial I had generate the "myApp" application that I'm using to studies purposes. One thing that I noticed as a surprise is that any action over the domain object need to be predetermined with static inner classes. I…
3
votes
0 answers

datanucleus maven is throwing IllegalArgumentException

I'm trying to get starting using Apache Isis. I have created an sample project from the Isis maven archetype. However when I do mvn clean install, I get the following: [ERROR] Failed to execute goal…
Magick
  • 4,603
  • 22
  • 66
  • 103
2
votes
1 answer

Compilation failure after adding Lombok NonNull annotation to JDO Entity fields

Based on the Apache Isis 2 SimpleApp JDO project (https://github.com/apache/isis-app-simpleapp/tree/jdo) I tried to slightly modify the SimpleObject class to mark some fields (name and notes) as not nullable using the Lombok annotation @NonNull.…
a-st
  • 51
  • 3
2
votes
1 answer

How do I speed up the Maven clean install? Taking 2 hours to complete

Im currently having a problem that I believe is Maven. For an university project, we are requiered to use intelliJ IDEA, java SDK, Apache Maven and Isis. I tried to follow the tutorial for Isis, creating a project, paste the arquetype on the…
Dreston
  • 21
  • 1
  • 2
2
votes
1 answer

ISIS: Problems with Collection of Attachments (Blob, Clob)

I am using ISIS 1.16.2 for a project at work and struggling with attachments and some related issues. I hope, you can help me (at least for a subset of my issues). Context: My item classes need to store an arbitrary number of attachments (Blobs…
JND
  • 65
  • 7
2
votes
1 answer

Apache Isis Build Fail specifies unknown repository when use User from ApplicationUser as property of my Entity

I want my Employee has User as bellow import org.isisaddons.module.security.dom.role.ApplicationRole; import org.isisaddons.module.security.dom.user.ApplicationUser; import…
Se Song
  • 1,613
  • 2
  • 19
  • 32
2
votes
1 answer

Apache ISIS: Column Order in a DomainObject - @MemberOrder not working

I have the following problem: I want to order the columns of a DomainObject in order to have the most important information first i.e. left. Therefor I used the @MemberOrder Annotaion, but this does not work. I have NO layout.xml so no options are…
riedelinho
  • 404
  • 1
  • 5
  • 15
2
votes
1 answer

How to order collection columns in Apache isis?

I am using apache ISIS for almost a year and it is a great framework. I am trying to improve the usability of the generated user interface and I am looking for a way to order the columns of a collection as displayed on the screen. I could not find a…
Marcel Baumann
  • 181
  • 1
  • 6
2
votes
1 answer

Apache ISIS call action programmatically

I'm trying to setup a periodic report job. The report shall be created without user interaction and the job shall be scheduled when the application starts. I have the background service and scheduler working. If I expose the createReport action as a…
user5806139
  • 531
  • 6
  • 14
2
votes
1 answer

Run Apache Isis Application on Eclipse

I just started learning Apache ISIS. I have configured the application and imported into Eclipse(Mars). Can anyone tell me how I can run the application from eclipse.
deen
  • 2,185
  • 7
  • 29
  • 53
2
votes
1 answer

Apache Isis: create dialog with referenced object dropdown

Given an Apache Isis project with a simple domain model such as below, what are the absolute minimum requirements for a create dialogue that will display a dropdown selection of all available Offices when creating a new Person? Current state: I can…
mwhs
  • 5,878
  • 2
  • 28
  • 34
2
votes
1 answer

Using different database provider settings in production

Say I want to use a different configuration in development and production, and want to switch between the two easily, so that my IDE just works out of the box with the development settings, and with a simple Maven command I am able to create a…
1
2 3 4 5 6 7 8