JSON-Representation of nested objects

2017-10-05 Thread Alexander Zerbe
Greetings, I've a rather simple question. Is there a way to display members of nested objects directly? For example, if I request a entity that has nested objects, I get a response (for members) similar too: * language: { * id: "language", * memberType: "property", * links:

Using view model as parameter in restful inteface

2017-10-05 Thread Vladimir Nišević
I must provide a REST service accepting more complex view model as input parameter. My view model parameter would look like @DomainObject(nature = Nature.VIEW_MODEL, objectType = "OfferTemplateFilter") @XmlRootElement(name = "OfferTemplateFilter") @XmlAccessorType(XmlAccessType.FIELD) @Getter @Se

New Member joins the Apache Isis Team

2017-10-05 Thread Kevin Meyer
Hello all, I am pleased to announce that Andi Huber has joined the Apache Isis team! Andi has been submitting pull requests since April last year, ranging from bug fixes to enhancements. He has also learned about how Apache Isis works, and used this knowledge to improve the core framework code to

Re: New Member joins the Apache Isis Team

2017-10-05 Thread Martin Grigorov
Welcome to the team, Andi! Martin Grigorov Wicket Training and Consulting https://twitter.com/mtgrigorov On Thu, Oct 5, 2017 at 9:48 PM, Kevin Meyer wrote: > Hello all, > > I am pleased to announce that Andi Huber has joined the Apache Isis team! > > Andi has been submitting pull requests since

Developing using Eclipse

2017-10-05 Thread Fernando Medeiros Junior
I tried to run the simpleapp, using the archetype and followed the guide in https://isis.apache.org/guides/dg/dg.html#_dg_ide_eclipse but it did't work. My first problem was that the ".launch" file, referenced by guide, does't exists in archetype. I have tried to run the org.apache.isis.WebServer b

Re: Developing using Eclipse

2017-10-05 Thread Stephen Cameron
You now need to add a dependency to your pom.xml to be able to use org.apache.isis.WebServer. Thats changed. Don't have details at hand sorry. Just running an application with that as the main class seems sufficient, so the launch file is not needed I'd say. On Friday, October 6, 2017, Fernando Me

Re: New Member joins the Apache Isis Team

2017-10-05 Thread Stephen Cameron
More good news, congrats to Andi, and thanks. On Friday, October 6, 2017, Kevin Meyer wrote: > Hello all, > > I am pleased to announce that Andi Huber has joined the Apache Isis team! > > Andi has been submitting pull requests since April last year, ranging from > bug fixes to enhancements. He h

Re: Developing using Eclipse

2017-10-05 Thread Jayesh Prajapati
Hi, While building you need to use maven profile or -D option named something like standalone. As soon as I find time I will check and share more detail with you. Cheers, Jayesh On 06-Oct-2017 5:25 AM, "Stephen Cameron" wrote: > You now need to add a dependency to your pom.xml to be able to

how to config N-1 Unidirectional Join table reationship with annotation

2017-10-05 Thread zcy
Hi, I met a question when config N-1 Unidirectional Join table and want to specific table name and field name. My classes as below: 1. Department class @javax.jdo.annotations.PersistenceCapable( table="t_depart", identityType= IdentityType.APPLICATION ) @DomainObject() p

Re: Developing using Eclipse

2017-10-05 Thread Jayesh Prajapati
I use below command to build my projects using maven. echo Build command [mvn clean install -Dskip.isis.standalone=true $*] mvn clean install -Dskip.isis.standalone=true $* I hope above helps. Thanks, Jayesh On Fri, Oct 6, 2017 at 6:48 AM, Jayesh Prajapati wrote: > Hi, > > While building you n