How Can jBilling Help You?
Who’s Using jBilling?

“jBilling has a very solid architecture and an elegant design.”
Jean-François Farjon
Guardian Mobility Corp.
See all testimonials >

import org.codehaus.groovy.grails.plugins.springsecurity.GrailsUser;

Hi all,

I am new to jBilling and I am trying to setup the source version in Netbeans. However, even though I added all the libs from the war in the classpath I still get the error that the import org.codehaus.groovy.grails.plugins.springsecurity.GrailsUser; is not found.

Any help with this?

Best regards,
Vasko

 
rcibor wrote 31 weeks 1 day ago

Grails plugin configuration?

To install the plugin type in your terminal:
grails install-plugin spring-security-core
it will download the plugin and use it as dependency during compilation in similar way maven does.

The plugin needs to be initialized and configured, message shown just after installation tell to run
grails s2-quickstart

The script requires arguments:
Usage: grails s2-quickstart [domain-class-package] [user-class-name] [role-class-name] {requestmap-class-name}

User-class-name should be probably Person, but what are expected values for domain-class-package and role-class-name?

Please register or login to post a comment.