Questions tagged [tynamo]

Tynamo is model-driven, full-stack web framework based on Apache Tapestry 5.

Tynamo's mission is to provide implementations for different aspects of a full web application stack that offer reasonable out-of-the-box functionality and are easy to customize. We are intent on proving that web applications based on Java can simultaneously be high performing, easy to implement and fun to develop. We leverage existing technologies where possible and provide integrations with proven, clean and compact libraries rather than limit ourselves only to standard Java (JSRs). Tynamo is both comprehensive and modular so you are free to choose the parts you like from our full stack. And finally, we like Tapestry and our modules use Tapestry IoC extensively.

Official website : http://tynamo.org/

This framewrork is related to and

19 questions
14
votes
1 answer

Hibernate: No default constructor for entity Inner Class

I realize there are many similar questions, but none have helped me along on this. I'm using a CRUD framework called Tynamo, which in turn relies on Apache Tapestry and Hibernate. This all works fine, except for when I try to use it for CRUD on a…
liltitus27
  • 1,530
  • 4
  • 28
  • 39
4
votes
1 answer

How do I use Tapestry-Security?

I discovered Tapestry 5, quite recently, its clear separation between view and controller, the use of name standardization instead of XML made me go for it straight. Quite frankly I don't plan on changing but the documentation is just not enough for…
lollancf37
  • 1,045
  • 3
  • 14
  • 27
4
votes
1 answer

Modifying Tapestry 5 Tynamo Security login form template

How can I override the HTML generated by Template of Apache Tynamo? I am currently converting my pages for use with tapestry-bootstrap and the login form looks a bit ugly.
user3001
  • 3,171
  • 3
  • 25
  • 50
2
votes
1 answer

tapestry apache shiro requireroles annotation

I tried this to prevent role doctor, and employee from accessing the page. @RequiresRoles(value = {"doctor", "employee"}) But now, doctor and employee cannot access the page. However, @RequiresRoles("doctor") works fine. Doctor can only access the…
user510783
  • 255
  • 4
  • 15
2
votes
2 answers

Using an interceptor with Tapestry Resteasy

I have a resource class and I'd like to be able to check an authentication token before the resource method is called, thus avoiding having to pass the token directly into the Resource method. I have added the following to web.xml:
user1440303
  • 103
  • 6
1
vote
4 answers

How to load files/properties from WEB-INF directory?

It seems that in my Tapestry app, I can't load ini files nor properties file from WEB-INF directory or class path. I tried several different methods which should load my file but non of them…
xyz
  • 2,197
  • 2
  • 23
  • 41
1
vote
3 answers

Swagger UI with Tynamo Resteasy for Tapestry 5.4

I am using tynamo resteasy with my Tapestry 5.4 project. I'd like to incorporate Swagger to document and share API with other other teams. While I see that swagger is already in RestEasy's project dependency, it does not work "out of the box" I've…
labheshr
  • 2,350
  • 2
  • 19
  • 28
1
vote
2 answers

How to inject bean in a Tapestry service

I want to inject bean in a Tapestry service (not in a page). For the moment, I use this : public class EntityRealm extends AuthorizingRealm { ApplicationContext ctx = new…
user2007861
  • 377
  • 3
  • 5
  • 14
1
vote
0 answers

Using tynamo ckeditor in tapestry

I'm newbie in Tapestry. I'm trying to use Tynamo CKEditor to make wysiwyg-editor on a page. There is a guide. Maven installed it. Firstly, I tried to copy code from this page, but it didn't work (there was a error of the page's deploying). I…
cherurg
  • 11
  • 2
1
vote
1 answer

Tapestry Security With Tynamo - Getting Started

I'm currently working on implementing security measurements for some Tapestry 5 projects. Now I've come across Tynamo Tapestry Security and it seems to be doing a really good job on authorization, but actually there also does not seem to be too much…
RedSonja
  • 360
  • 1
  • 13
1
vote
2 answers

Unable to persist entities with tynamo-resteasy when service is in autodiscover package

In my discovery of tynamo and resteasy integration, I'm facing an issue on saving datas, that I partially solved (so I will partially share it ;) ). User guide is here : http://docs.codehaus.org/display/TYNAMO/tapestry-resteasy+guide I wrote a rest…
Jean-Rémy Revy
  • 5,431
  • 3
  • 36
  • 64
1
vote
1 answer

Full shiro configuration in tapestry 5.3

I have an application in Tapestry 5.3.4 that's using the tapestry-security 0.4.6 plugin along with shiro 1.2.0 for authentication, and it works well. However, I would like to use EHCache to cache session data, and eventually to cluster a couple of…
Martin J.
  • 33
  • 6
1
vote
1 answer

Tapestry 5: Value of password field not bound to variable

I currently have the following problem with Apache Tapestry 5.3.1: The user should be able to edit his profile details and to change his password. For the data there is a "User" entity. I cannot use the getPassword method of user, as passwords are…
user3001
  • 3,171
  • 3
  • 25
  • 50
0
votes
2 answers

Tapestry override Authenticator

I am trying to use a custom authenticator for tapestry-security (org.tynamo.security). I have a custom authenticator public class EnvironmentalRealmAuthenticator extends ModularRealmAuthenticator And in my module I override the default…
MetaColon
  • 2,472
  • 3
  • 14
  • 34
0
votes
2 answers

HibernateEntityValueEncoder NullPointerException

I'm using a CRUD framework called Tynamo, which in turn relies on Apache Tapestry and Hibernate. This all works fine, except for when I try to use it for CRUD on a table with a composite/compound primary key. I've decided not to go the @EmbeddedId…
liltitus27
  • 1,530
  • 4
  • 28
  • 39
1
2