|
Any good tutorials or samples on spring security.
Thanks
Started by chris on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Google search terms: spring security tutorial
http/blog/2008/07/07/5-minute-guide-to-spring-security/
http://wheelersoftware.com/articles/spring-security.
This looks like what you're looking for.
|
|
I am a Java developer but up to now have not had any hands on experience using the Spring framework.
Does anyone know of anyone good online tutorials that explain the basics and offer good examples and sample code.
Started by will on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at stackoverflow):
This helped me a lot: Introduction....
It has a lot of modules with different goals.
The Spring guysFirst of all you have to realize that Spring is big.
The reference is also available online.
Is a good reference for Spring.
|
|
I have come to Grails without first being a Spring developer. This is great when things work but leaves me lost when things don't work as I expect, or I wish to extend things in ways unanticipated by the existing Grails documentation and reference books...
Started by Alex Stoddard on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
That should get you started, it also makes use of Spring probably get an understanding for SpringMVC....
Developer+-+Spring+MVC+Integration
Grails just builds on top of a SpringMVC dispatcher servlet to a helper ( SimpleGrailsControllerHelper ).
|
Ask your Facebook Friends
|
Like the title suggests, I am looking for a good read on Java application design that leverages Spring. When I read different examples on the internet or the Spring official documentation, I had this feeling that every author out there presumes that you...
Started by Jay on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
(These are the spring creators).
Manning: Spring in Action, Second Edition
Professional Java Development with the Spring Framework.
|
|
I'm reading up on Spring at the moment and one of the examples used for a use of AOP is logging the start and end of method calls.
I've also read that using AOP can impact performance.
Is using Spring AOP a good idea for this type of logging? My understanding...
Started by Omar Kooheji on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
I used Spring AOP for implementing logging so I share my observations:
Performance impact is not sufficient, it is less than impact of logging itself Having aspects configured in Spring.
|
|
I'm trying to get a handle on how to implement threading in a Java application that uses Spring for transaction management. I've found the TaskExecutor section in the Spring documentation , and ThreadPoolTaskExecutor looks like it would fit my needs;
...
Started by James McMahon on
, 6 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
In the example below I'm taking some example class (ClassWithMethodToFire) and wrapping() { classWithMethodToFire.doSomething( parameter ); } }); } }
And here are the Spring beans:
<bean name proved to be of good....
The Spring config.
|
|
I wanted to build an application based on Java EE 6, but the security mechanisms of Java EE are not sufficient and a pain to with for my needs. Spring Security seems the best way to secure my application. Now I wonder if Spring Security + EJB is a good...
Started by deamon on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Spring itself, and the Spring Security module Spring Security for logins/security, then it doesn't care or even know if you are using EJB vs JDBC vs remoting technologies etc.
Access technology, or a way to distribute services.
|
|
My setup is fairly simple: I have a web front-end, back-end is spring-wired.
I am using AOP to add a layer of security on my rpc services.
It's all good, except for the fact that the web app aborts on launch:
[java] SEVERE: Context initialization failed...
Started by Nick Hristov on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Did you try/spring/org.springframework.aop-3.0.0.RELEASE.jar , just WEB-INF/lib/org.springframework.aop/spring-context-2.5.xsd http://www....
Into a single directory and the Spring schema and handler files are overwriting each other.
|
|
My team is about to build a new product and we are using Spring and Spring MVC. There are other book posts on stackoverflow, but I couldn't find one that matched my needs.
My manager will be purchasing books for our team to use as a resource so...
What...
Started by Justin Standard on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
It includes two ....
You can't go wrong with SpringProfessional Java Development with the Spring Framework
"Manning Spring in Action 2nd Edition in Action .
Lots of good insight.
Covers a wide range on the Spring framework.
|
|
I need some information to understand design decision:
Is Struts a better choice than Spring MVC? I hear about Strus-Spring-Hibernae combo - Is struts used at MVC layer because its a matured framework than when compared to Spring MVC?
Any one used this...
Started by Shaw on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at stackoverflow):
I do however....
Is it better than Spring MVC? I can't really say, as I don't have much experience with Struts.
For Spring MVC beginner SimpleFormController is a good starting point and its behavior can web framework family.
Requirements.
|