There are so many options these days for persisting data.
In-Memory, file system, traditional databases, NoSQL.....it can make you dizzy just trying to think about it.
In this session we are...
Type: Posts; User: ls_to_2007; Keyword(s):
There are so many options these days for persisting data.
In-Memory, file system, traditional databases, NoSQL.....it can make you dizzy just trying to think about it.
In this session we are...
Hope to see you there!
http://www.meetup.com/Toronto-vFabric-User-Group/events/107554412/
Will do. On a side note, would you be able to send me any swag or give-a-aways for the event? Some Spring or Grails swag specifically would be great.
For this Meet Up we are fortunate to have Mark Johnson as our guest speaker:
http://www.nofluffjuststuff.com/conference/speaker/mark_johnson
Mark has a lot of experience with Groovy on Grails and...
I have an application that serves pages with randomly generated content.
To improve performance I would like to generate all the pages when the application starts up and store them on the file...
So I decided to built the whole thing with Roo and then move my data into the schema that gets built in the process.
However I can't see a way in the JSR-303 spec to create a unique constraint. I...
Thanks guys. Right now I have this app running using iBatis and Spring (built from scratch). I have had some trouble getting Spring Security to work. When I did the 10 minute test I was pretty blow...
Roo seems very cool. I am still getting my head around it and am looking at using it for a small project.
My question is can I create code that uses string JDBC Template?
...
I also missed it. Hopefully it is posted soon I would love to see this.
Great call! It was the web.xml, I had the DTD not the schema.
Thanks!
Hello;
I am in the process of learning annotations and a few other features of Spring 2.5. Maybe in the process of learning this stuff I have misconfigured something. Or maybe I am just doing...
This is solved.
I was able to extend the code a little further up stream that created the Authentication token to make sure it contained the form values I wanted.
Thanks,
Luke
My app is using Acegi/JAAS, however the User Details object is an extension of the standard Acegi object.
I have extended JaasAuthenticationProvider to create a new...
I have moved this to the hibernate forum. Makes more sense to have it there:
https://forum.hibernate.org/viewtopic.php?f=1&t=996542
I don't see how to delete a thread from here so I guess I...
I have the concept of a Company. A Company can have 0 to * Audits.
Here is Company:
public class Company implements Serializable {
...
@OneToMany(mappedBy="company",...
Wow Barry thanks! That does sound simple and also it satisfies another requirement in which I need to look for the presence of an LDAP role and if found add another role to the User.
I will give...
If I put 'OU=R' as 1 constructor for my DefaultLdapAuthoritiesPopulator the search finishes but no roles come back?
However if I put 'OU=R Users' as the constructor I get a list of groups but it is...
Hello All;
I am an LDAP newbie and have inherited some code that seems to have an issue.
I would like to get a list of LDAP groups for a users. However I get a timeout error before LDAP comes...
Hello;
I am looking to add a new filter to my security chain to store some custom data related to the logged in user which I can obtain at a later point.
I am pretty new to the acegi api so I...
Wicket looks pretty cool!
http://cwiki.apache.org/WICKET/spring.html
Anyone have any more info on this? Perhaps personal experience?
Hello;
I have been building web applications using Spring, Hibernate and Acegi. However I find building the UI to be a huge pain.
Right now I am using Site Mesh for the "skin" of the...
This is resolved.
I needed to put not only the acegi filter before the sitemesh one, but also the acegi filter mapping before the sitemesh ones (I had the sitemesh mappings first).
Once I got...
Yes.
<filter-mapping>
<filter-name>securityFilter</filter-name>
<url-pattern>/j_security_check</url-pattern>
</filter-mapping>
<filter-mapping>
I have in my common/footer.jsp:
<authz:authentication operation="username"/>
The file is inserted into my sitemesh decorator:
That was it. Brilliant! Thanks Matt!