user « GWT « Spring Q&A





1. method @Secured suppose to throw error when no user authenticated yet    stackoverflow.com

my service look like below @Controller
@GwtRpcEndPoint
public class ServerServiceImpl implements ServerService { @org.springframework.security.annotation.Secured("ROLE_ADMIN")
public String runGwtSprMvcHibJpaDemo(String s) {

 System.out.println("SecurityContextHolder.getContext()="+SecurityContextHolder.getContext());
 System.out.println("SecurityContextHolder.getContext().getAuthentication()="+SecurityContextHolder.getContext().getAuthentication());
 }
} my applicationContext.xml
<security:global-method-security secured-annotations="enabled" ...

2. Spring + GWT, how to disable User Authorization request for a Insert Query?    stackoverflow.com

I'm currently working on supporting a Spring + GWT intranet application that was given to me on the last hour, I need to implement a dozen fixes to this software, including ...

3. using request builder to authenticate user: Not working in spring security    stackoverflow.com

I need to authenticate a user in a page based on the remember me cookie, inspired by this site: Tutorial for checking spring authentication, I came up with a solution for ...

4. Customizing the Spring Roo generated GWT user interface    stackoverflow.com

How does one go about customizing the GWT user interface that Spring Roo automatically generates? Am I supposed to change the Roo-generated source files? If so, will that not be clobbered the ...

5. Spring + GWT project - execute handler on every user action    stackoverflow.com

I'm new one in Spring, GWT and even Java World. So be patient. We have relatively big project, which one used Spring, GWT, Hibernate and Signal-Com Inter-Pro (Russian solution for html ...

6. Get list of logged in users Spring+GWT. Please Help    forum.springsource.org

Get list of logged in users Spring+GWT. Please Help Hi, all! I am new to Spring Security, but i try step by step to learn how to use it proper in ...