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
1
vote
0 answers

Apache isis sql query not working in isisJdoSupport.executeUpdate()

I am creating a project using Apache Isis. I need to run an update query in the project using isisJdoSupport.executeUpdate(). But it is not updating the value in database. The method returns number of rows updated, but it does not update values in…
Siddhesh Phatak
  • 198
  • 1
  • 2
  • 11
1
vote
1 answer

How do I solve this spec loader error in apache isis

I am using the income platform as a test platform. I have added an entity in a separate module Provider. Provider has a reference to itself via a parent property. I want to ensure that I can use autocomplete or be able to select a provider from a…
user1622343
  • 967
  • 5
  • 9
1
vote
1 answer

Apache Isis Security login No password encryption service is installed

I'm new to Apache Isis, after I implemented Security Module, I try to login using isis-module-security-admin and pass. When I login I received this exception 11:38:48,577 [Native qtp1881129850-19 DEBUG] SELECT…
Se Song
  • 1,613
  • 2
  • 19
  • 32
1
vote
0 answers

Apache isis v1.15 repositoryService allInstances return incorrect size

I'm quite new to Apache ISIS, and I want to get a list via the dataNucleus with a legacy database(MYSQL), There are 300,000 of the data, But when I'm trying to use repositoryService.allInstances() method to get a List, returns the size of list is…
Jiffy
  • 11
  • 2
1
vote
1 answer

Apache Isis How to show Value Object

Recently,I used Apache Isis to build my DDD project。 Now,I have one entity object Customer,I think Customer may be have many value object,eg. CustomerContactInfomation. public class Customer extends AbstractEntityObject{ @Column(allowsNull =…
Iseeu
  • 13
  • 4
1
vote
1 answer

Apache Isis: @Property(editing = Editing.ENABLED) doesn't work for ViewModels

I added a property to ViewModel and marked it with Editing.ENABLED. @DomainObject( nature = Nature.VIEW_MODEL, objectType = "homepage.HomePageViewModel" ) public class HomePageViewModel { @Setter @Getter @Property(editing =…
Yurii
  • 25
  • 5
1
vote
1 answer

Apache Isis: How to implement your custom submit form or page properly?

I'm new at Apache Isis and I'm stuck. I want to create my own submit form with editable parameters for search some entities and a grid with search results below. Firstly, I created @DomainObject(nature=Nature.VIEW_MODEL) with search results…
Yurii
  • 25
  • 5
1
vote
1 answer

CommandExecuteIn Background throws a "Not an (encodable) value" error

I am currently trying to implement file exports in background so that the user can do some actions while the file is downloading. I used the apache isis CommandExexuteIn:Background action attribute. However, I got an error "Not an (encodable)…
Kesh
  • 25
  • 7
1
vote
1 answer

Apache ISIS: Set HTTP-Response

I have the following situation: When someone calls my Restful-Service Apache the Apache isis code is predifened accordingly to the request. If you miss some parameters you will get a 400 - Bad Request. Otherwise when all parameters are given you…
riedelinho
  • 404
  • 1
  • 5
  • 15
1
vote
1 answer

Apache Isis jdoqlFromClause validation error with multi-level inheritance

I've just upgraded Apache Isis to the latest version 1.14.0 in my project and faced with the next problem: 1) I have 3 domain objects with multi-level inheritance (in the same package): A, B, C @DomainObject(objectType = "A", editing =…
1
vote
1 answer

How to update isis project core

I'm just getting started with apache isis, and I've had some good runs. However I've come across an issue with wicket which has been fixed in wicket v7.6 (isis v1.15). I'm on isis v1.14 I'm having serious troubles updating the dependencies. I'm at…
Jered
  • 169
  • 11
1
vote
2 answers

Apache ISIS external link

Let's say I have a domain object Customer. On this object I have an address to an external site. @PropertyLayout(named = "Link", describedAs = "Clickable link to customer") public String getLink() { return "http://www.customer.com"; } In this…
user5806139
  • 531
  • 6
  • 14
1
vote
1 answer

How to show non-persistent fields for an in-memory object in Apache ISIS?

I have an Apache ISIS @Action that creates and returns a list of in-memory objects. When those objects are displayed by Apache ISIS as a collection in the browser - the JodaTime DateTime and String fields become all null. There is also another field…
Varis
  • 13
  • 1
  • 4
1
vote
1 answer

How do I make a collection in Apache ISIS show up in the parent object screen?

I have a domain object called "Company" with a Set<> of domain object called "Location" I can add objects of each, and associate a location to a parent object of Company, but for some reason the Location object table is always empty in the Company…
Jeremy
  • 2,970
  • 1
  • 26
  • 50
1
vote
1 answer

AutoComplete not working in Apache ISIS Action

I have following method: @Action(semantics = SemanticsOf.SAFE) @ActionLayout(named = "Find alphabet Soup by Letter", bookmarking = BookmarkPolicy.AS_ROOT) @MemberOrder(name = "Menu soups", sequence = "7") public List
riedelinho
  • 404
  • 1
  • 5
  • 15