Tagged Questions
0
votes
2answers
124 views
No bean named but bean is defined
I'm working on an update version of grail-oauth-plugin that support last spring-oauth
My plugin version works good and I have implemented a workin oauth2 server.
But now I want to add a custom-grant ...
0
votes
1answer
48 views
Groovy, STS, and debug info, information, or symbols
I'm trying to include the debug information or symbols in my Groovy code so that I can use the Spring Security annotations with SpEL to access an annotated method's arguments by name. For example:
...
0
votes
1answer
94 views
capture a user list, spring security, with boolean value
So I have been investigating this for a while and I am not sure that my approach is actually possible. I am very new to groovy, and really struggling.
I am writing a web-app which can be used to ...
1
vote
2answers
114 views
Cannot resolve symbol in Grails project
I am using Spring Security core on this Grails project. I get the error "password" cannot be resolve in the BootStrap class.
I have this domain class:
class Person {
transient springSecurityService
...
2
votes
2answers
207 views
How to reduce the use of PermGen space in Grails
in my Grails application using the Spring Security Core plugin for authentication. I am facing a serious problem with that because my application took 21 seconds to lift the Tomcat was carrying 43/2 ...
2
votes
2answers
214 views
Grails Spring Security forcing user to a specific screen after successful authentication
Here is the scenario. I have two objects Users (with username/password) and UserInfo with rest of the data related to user. The Users is an old table with thousands of records and UserInfo is fairly ...
0
votes
2answers
70 views
Any way to know what user is logged in in renderEditor.template
my question is: It there any way that in renderEditor.template know what user is logged in and what roles does he have?
What I want to do: In my app i want some field change when logged user is admin ...
2
votes
2answers
57 views
Using SpringSecurityCore bootstrap
just recently started programming in Groovy and already stuck. I am trying to create users available to login in my bootstrap, I have seen numerous tutorials and despite copying and pasting code I was ...
0
votes
1answer
124 views
Find user with specific spring security role
I have the following:
def userInstance=User.findAll("from User u where u.merchant is not null and u.merchant.id = ? and u.authorities.authority.contains('ROLE_MERCHANT')", merchantId)
And get the ...
2
votes
1answer
122 views
How to configure a grails plugin from another grails plugin
I am trying to write a plugin which I can reuse in several grails applications.
The plugin should basically be a wrapper for the spring security core and the ldap plugin.
Which means it should ...
0
votes
3answers
213 views
Grails SpringSecurity User Object
I have a basic Grails 2 application which I setup along with the SpringSecurityCore plugin. This seems to be working fine. However, when I try to add additional properties to my User.groovy file by ...
0
votes
0answers
128 views
Spring-Security MongoDB User Save
Im having some major problems re-saving a user using springsecurity with mongodb.
Basically it is as simple as after i have found a user matching the same username from my mongodb like follows for ...
0
votes
1answer
207 views
grails spring-security create user
Im having some problems creating new user from one of my controllers. I'm trying to add a new user to my MongoDB user collection like this. Authorities is defined as a Set of Role in the domain.
Role ...
0
votes
1answer
123 views
Grails - Write method available in any controller
I'm quite new into groovy / grails world, so forgive for asking simple question. I'm pretty sure this can be done by meta-programming, that is injecting method into definition of grails controller ...
2
votes
1answer
138 views
Syntax error in BootStrap.groovy
I'm using Grails with the SpringSecurity plugin. I ran s2-quickstart so the user-domain-class
was named "User.groovy" and the role-domain-class was named "Role.groovy". Consequently, the mapping class ...
1
vote
1answer
375 views
How to use ACL plugin?
I am trying to use ACL plugin in my grails application. Based on the example given in this tutorial, http://grails-plugins.github.com/grails-spring-security-acl/docs/manual/guide/3.%20Tutorial.html I ...
0
votes
2answers
333 views
Error when registering an event listener, using Spring Security Core plugin & Grails 2.0.0
Im trying to register an event listener for a successful login, so that I can perform some logic when i know a user has just authenticated. As per the spring security docs, im registering the event as ...
0
votes
1answer
375 views
The Spock compiler plugin could not run because
Was trying to complete tutorial here: http://rwinch.blogspot.com/2011/03/running-spring-securitys-tutorial.html
Have downloaded git://github.com/SpringSource/spring-security.git and got a lot of ...
0
votes
3answers
389 views
Spring Security Plug-in Doesn't Work With More Than One BelongsTo. Why?
I have a class like this :
class User {
String name;
String password;
static hasMany = [ authorities : testing.Role ]
static belongsTo = Role
static constraints = {
...
2
votes
1answer
180 views
Using file extension content negotiation with spring security plugin?
I'm trying to use the latest spring security plugin for grails, but I've hit a little bump.
I have a controller with this method:
@Secured(['ROLE_USER'])
def query = {
}
When I hit ...
2
votes
2answers
522 views
grails facebook registration/login
I have a Grails app that uses the Spring Security plugin for authorisation/authentication. I would like to also offer users the ability to register/login via Facebook. I need to integrate Facebook ...
0
votes
2answers
584 views
spring security config giving error on server startup
Hi I have created a security-app-context.xml for my grails/groovy app. It is as follows:
<beans:beans xmlns="http://www.springframework.org/schema/security"
...
0
votes
0answers
249 views
making a redirect url global
I have a grails-groovy app and I want to redirect the user to the login/logout page after he clicks a button in the app, but the session has already expired.
Right now just before every closure in ...
0
votes
1answer
153 views
Domain classes in grails
How to make relationship between two domain classes in grails . I already have one domain class from the plugin (spring security plugin) and i want to link USER domain class from plugin to the Profile ...
0
votes
1answer
357 views
No signature of method: static org.springframework.security.oauth.User.withTransaction()
i have a problem is shown below;
groovy.lang.MissingMethodException: No signature of method:
static org.springframework.security.oauth.User.withTransaction() is applicable for argument types:
...
1
vote
1answer
226 views
authorisation with Spring Security Grails plugin
Background
I'm using the Spring Security Grails plugin. Because my User and Role classes are not GORM objects, I I've replaced the UserDetailsService provided by the plugin with my own ...
2
votes
1answer
316 views
how to avoid a automatic logout using spring security
i'm fighting with a strange problem using the spring security core plugin. after a successful login clicking on any secured link causes a automatic logout of the current user. it's very hard to ...
1
vote
1answer
786 views
override method of Grails plugin bean
The Spring Security plugin provides a bean named 'springSecurityService' of type grails.plugins.springsecurity.SpringSecurityService. I need to override the getCurrentUser method of this service.
I ...
1
vote
1answer
129 views
Using Grails Acegi Plugin when a User domains “enabled” field is set to false. The user can still login
Is the disabling of users natively supported by the Acegi Grails plugin?
From the Documentation it appears to support the "enabled" field..
But after setting the Users "enabled" field to false, the ...
1
vote
1answer
55 views
How to show the auth page if the URL doesn't contain extra path?
I use Spring security plugin for our Grails application.
How to show the authentication page if the user typed the URL without any extra path, for example:
http://localhost:8080/OurGrails
I use ...
0
votes
1answer
206 views
How to prompt the user after two failed login attempts in Grails Spring-Security powered app?
The login requirement for our Grails app is that after two failed login attempts, the user is prompted with a new question right below the fields asking if the user forgot the password.
I'm using ...
1
vote
1answer
74 views
What is the best approach to collect/define lastvisited information in Grails/spring security?
What is the best practice or approach to get lastvisited information for an user in Grails? For user login, I am using spring security and I want to show few junks of information based on lastvisited ...
0
votes
2answers
1k views
how to add users in spring security core
I just added the spring security plugin to my grails application. I have a question about adding users and their associated roles. I am able to do it correctly in the bootstrap but was wondering how ...
1
vote
2answers
1k views
Why can't i login with spring security and weceem plugin installed in grails framework 1.3.7
I'm working on a nearly clean grails 1.3.7 project with weceem 1.0RC2, spring-security-core 1.1.3, spring-security-ui 0.1.2, weceem-spring-security 1.0 and their dependencies installed.
Everything ...
3
votes
1answer
575 views
Grails, upgrading from Acegi to Spring security plugin
Yesterday I started upgrading our Grails app from Acegi plugin 0.5.2 to the Spring security plugin. I'm running into a few issues, maybe anyone can help here?
After making the necessary changes (as ...
1
vote
2answers
1k views
Spring Security and Grails - customizing URLS
In a current Grails app I'm working on all my account management now happens under an account controller which I would like to keep all those actions mapped under the /account/* URL pattern.
I'm ...
2
votes
3answers
978 views
Grails, Spring Security LDAP Plugin
I'm trying to get the LDAP plugin work. I only want a LDAP authentication against an Active Directory but it seems that I'm missing something.
Config
grails {
plugins {
springsecurity {
...
1
vote
1answer
417 views
How do I mock an acegi authenticate service for unit testing?
This my grails service class method:
class SomeService {
def authenticateService
def getUserName() {
def cid = authenticateService.userDomain().customerid
def uid = ...
1
vote
2answers
424 views
Excluding plugins from Cobertura reports in Grails
I'm using SpringSecurity plugin in my project and also Cobertura plugin for code coverage reports. The thing is I'd like the SpringSecurity specific classes (login and logout controllers, persistent ...
1
vote
2answers
748 views
grails spring-security-core plugin does not make under intellij idea 9/10
I've been playing with the grails framework lately with idea and everything has gone well until I stalled the spring-security-core grails plugin. The plugin and project work fine when using grails ...
0
votes
2answers
355 views
Grails Secure Login Design Questions along with Library & DB Choice
Am planning on building user administration module using Grails and the Spring Security Core plug-in for Grails.
Also, am considering using MongoDB for the database system.
Question(s):
(1) What ...
2
votes
2answers
336 views
Grails - access only for object's owner
I'm still working on my first Grails application. This time, my problem is to limit access to some actions for particular users.
Assume users add some object, e.g. books. I would like to give access ...
0
votes
1answer
177 views
Acegi User Class constraints under groovy
Hi
I have an Groovy appilcation using Acegi Spring Security.
My User Class looks as follows:
class User {
static constraint = {
email(blank:true, nullable:true)
description(blank:false, ...
1
vote
3answers
3k views
Grails Acegi Plugin springsecurity.GrailsDaoImpl - User [admin] has no GrantedAuthority
i upgraded my grails 1.0.4 + acegi 0.4.1 project to grails 1.1 with acegi 0.5.1.
I'm able to start my application without errors, but when i want to login i get a "wrong username or password" ...
5
votes
1answer
1k views
Grails - Acegi: Customize Authentication Method
I want to change the authentication process that is used by the Acegi - Plugin. It should be a completly customized process. Cusotm login form + custom auth method.
Obviously there is only few ...
