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

VM JAXB property 'dateOfHire' is of type 'org.joda.time.LocalDate' but is not annotated with @XmlJavaTypeAdapter

On JAXB I have a LocalDate property @Property(editing = Editing.ENABLED) @Getter @Setter private LocalDate dateOfHire; On my other entity I have added @XmlJavaTypeAdapter(PersistentEntityAdapter.class) they work fine, but LocalDate is…
Se Song
  • 1,613
  • 2
  • 19
  • 32
0
votes
1 answer

Remove OK and Cancel button on properties

How to remove OK and Cancel button on VM Jaxb to make user more easier to input value and move to next field using just single tab. I want to use VM Jaxb as DTO to transfer data between user and object. So user will not access to object directly.
Se Song
  • 1,613
  • 2
  • 19
  • 32
0
votes
0 answers

I want to customize default popup on create using redirect new page instead

On Action create as bellow @Action public EmployeeVM newEmployee(final String name) { employeeRepository.create(name); return this; } It show popup Is it possible to redirect to a new page with the back button and save button instead of…
Se Song
  • 1,613
  • 2
  • 19
  • 32
0
votes
2 answers

Cannot log into Incode Platform

After I build Incode Platform successfully, I am unable to login with sven/pass or any password combination I can think off. The following error is logged 22:31:49,645 [ShiroAuthenticatorOrAuthorizor qtp1315447704-15 ERROR] Unable to…
user1622343
  • 967
  • 5
  • 9
0
votes
1 answer

JSON string gets parsed correctly in Postman but the same fails in JavaScript

This is the JSON string i am passing to a POST request: var data = { "location": { "value": { "href": "http://localhost:8080/restful/objects/businessentities.Location/47" } }, …
L Eder
  • 1
0
votes
1 answer

How do I reliably style object layout in apache isis wicket viewer?

I have created a module by copying module-simple. I have everything working well. However, the layout does not follow the layout.xml specification - I did not change anything except to rename the file. This is the SimpleObject view. This is my…
user1622343
  • 967
  • 5
  • 9
0
votes
1 answer

Apache Isis: Java Type mapping failed

I have one problem with the open source estatio (that is built based on apache isis) I've export data base schema first in DDL file. After that I have imported the DDL file in PostgresSQL 9.5. The application can be started. And some of fixture can…
Chi Cuong Le
  • 368
  • 2
  • 7
0
votes
1 answer

Apache Isis (v1.14.0): Property is not editable in JAXB view model

I've created this JAXB view model: @XmlRootElement(name = "homePageViewModel") @XmlType( propOrder = { "editableField" } ) @XmlAccessorType(XmlAccessType.FIELD) public class HomePageViewModel { …
Yurii
  • 25
  • 5
0
votes
0 answers

Cache for nondurable objects in datanucleus

I have several nondurable entities that are mapped via datanucleus on View's and i want to load them into memory on startup in cache and reload once per day, but datanucleus says that he can't provide caching for nondurable objects. Does anyone now…
0
votes
0 answers

Apache Isis: How to get the value of the added custom wicket component

I'm quite new to Apache ISIS, and I'm trying to add a custom wicket component by extending ScalarPanelAbstract. I have a method accepting a pageable parameter. The pageable is an interface that consists Page number and Page size. //region >…
Arjun
  • 41
  • 1
  • 9
0
votes
1 answer

How to upload a Java (Hash)Map to Apache ISIS RestFUL service

is it possible to upload a Map to Apache ISIS' restful interface? I have following interface where I want to upload to: public SendMessageResponse send( @ParameterLayout(named = "dummyParam1") @Parameter(optionality = Optionality.MANDATORY)…
riedelinho
  • 404
  • 1
  • 5
  • 15
0
votes
1 answer

PROTEUS: How to add a binary firmware, from an unsupported compiler?

In ISIS design tool there are many options of compilers, as well as microcontroller families and their variants with which we can perform compilation and simulation in the Proteus IDE. However, although it is possible to install other compilers that…
aluis.rcastro
  • 46
  • 1
  • 7
0
votes
1 answer

Persistent Collection not visible in layout

I followed this video on persisting bidirectional collections with Apache Isis. For some reasons it doesn't work for me (my context is slightly different from the video as I started from the maven starter project). If I look up the CustomerOrder by…
0
votes
1 answer

Add textfield searchbox to header/navbar in Apache Isis

I'm trying to work out how to add textfield to the navbar in the header that I can use as an always present search box but I haven't had much success. From the documentation (7.2. Replacing page elements) I see that I can replace components inside a…
AdamD
  • 25
  • 1
  • 4
0
votes
1 answer

Integrate a WYSIWYG editor in Apache Isis

Is there a workaround to integrate a WYSIWYG editor like Summernote in Apache Isis? I found this New feature request in Jira https://issues.apache.org/jira/browse/ISIS-1217 but I'm not sure it fits my needs. I have a text field in which the user has…
Alex
  • 249
  • 1
  • 6