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

How to implement a Layout between two entities

I'd like to know how to implement a Layout between two entities so that it's possible to see in only one screen an entity that has a list of a second entity, and at the same time, this second entity has two lists of other entities. Entidad:…
0
votes
1 answer

Apache Isis and MySQL

Can someone please help me on setting up Apache Isis to work with MySQL. I tried to set MySQL database but it doesn't…
Milos Miskone Sretin
  • 1,748
  • 2
  • 25
  • 46
0
votes
1 answer

Customizable Table Columns in Apache Isis

I am creating an application with Apache Isis and everything is rendered correctly except that rendered tables are showing all properties from my model. Is there a quick way to allow users to choose which columns they want to show on the table and…
Milos Miskone Sretin
  • 1,748
  • 2
  • 25
  • 46
0
votes
1 answer

The connections opened to sql using apache isis are not closed

I am using Apache isis for API and using SQL server as DB.I noticed slowness in executing query in the DB. On investigating I found that the connections which were opened by Apache ISIS have not been closed and were on sleeping state. This led to a…
0
votes
1 answer

How to store a collection of strings in jdo apache isis without joins

I wanted to store a set of strings which are not available in any other table in the schema. For example, I have a table with country_id, country_name and animals The column animals need to be a Collection (Set or List) and the animals in the list…
0
votes
1 answer

How to provide a list as parameter in apache isis

I have to call an api in isis and pass list of objects as parameter using parameterlayout. When I try to provide the parameter as list it throws error. @Action() @CollectionLayout(named = "Add text fields") @MemberOrder(name = "Text field…
0
votes
1 answer

Security Module Menu

I'm using this security module org.isisaddons.module.security isis-module-security-dom (isis version 1.16.2). When I start the app the security function links(all roles, all packages.. ecc) are shown…
Jane
  • 27
  • 5
0
votes
1 answer

Apache Isis, clone/double form

I'm working with simple web app. I have an entity 'Person' that has a reference to another person (its parent). public class Person { ..... @javax.jdo.annotations.Column(allowsNull = "true",name = "parentId") @Property(editing =…
ManoloComo
  • 11
  • 2
0
votes
2 answers

Apache isis helloworld archtype build failure

I am getting started with Apache isis (I have Windows 10) and following their tutorial (https://isis.apache.org/guides/ugfun/ugfun.html#_ugfun_getting-started_helloworld-archetype) I installed Java and Maven, added them to the path and then I…
Thinker
  • 5,326
  • 13
  • 61
  • 137
0
votes
0 answers

Error in JDOQL query, FROM clause not recognized in Apache ISIS metamodel validation

My SQL Query generates error in JDOQL query, class name for FROM clause not recognized in meta model validation. I have defined the following queries : @javax.jdo.annotations.Queries(Array( new javax.jdo.annotations.Query( name =…
0
votes
0 answers

How to communicate with desktop programs with socket in apache isis

I have a desktop program which communicates with socket, I want to use apache isis as back-end. is there a demo like the old DND Viewer ?
Jiffy
  • 11
  • 2
0
votes
1 answer

excluding Factory RecreatableObjectFacetFactory and adding my own Factory in isis.properties

I have written a View Model Facet Factory that is supposed to replace RecreatableObjectFacetFactory I have excluded RecreatableObjectFacetFactory and added my own factory in isis.properties but keep on getting the following error when the meta…
0
votes
1 answer

Apache Isis apend HTML tag to VM (JAXB)

I want to add some HTML tags to my View Module (JAXB), but I can't find any solution. e.g I want to display an iframe or add some div tags. What I can add to my VM is property as bellow. How can I…
Se Song
  • 1,613
  • 2
  • 19
  • 32
0
votes
1 answer

JNDI Shiro PostgreSQL - Unable to look up javax.sql.DataSource with jndi name 'jdbc/postgres' in Apache Isis

I have downloaded the Apache Isis' simple-app archetype 1.15.0. And I would like to integrate it with Apache Shiro following this documentation . But i got some error like this: java.lang.IllegalStateException: Unable to look up javax.sql.DataSource…
paul
  • 372
  • 4
  • 17
0
votes
1 answer

Apache Isis 1.15.0 - PostgreSQL

I tried to integrate the Apache Isis' simple-app 1.15.0 with Postgresql using docker-toolbox. But i had a problem, it says I cannot create a schema because of permission denied to database. I tried to google it and read the apache isis…
paul
  • 372
  • 4
  • 17