From MyEclipse or Eclipse, File->Import->Gradle Project, hit next, browse to Root folder of the project, hit Build Model.
How do you attach a zip file here?
Type: Posts; User: nganle; Keyword(s):
From MyEclipse or Eclipse, File->Import->Gradle Project, hit next, browse to Root folder of the project, hit Build Model.
How do you attach a zip file here?
I tested on a smaller project and it gave the same error. But when I rearranged the project into multi-project structure, rewrote the build.gradle and included settings.gradle, Importing Gradle...
Hi, I'm new to Gradle, and I need to convert an existing Java with an ant build file to Gradle. I wrote a build.gradle for it and now trying to import Gradle Project through MyEclipse with STS Gradle...
Turned out that MyFaces prepended Id to its parameters and default Spring Security filters were expecting j_username j_password. I am using 1.1.X for compatibility with Tomcat 5.X and the attribute...
Yes, thanks for the advice. I did go through the debugger. the Authentication object has nothing in it. Principal, password, etc.. were all empty by the time spring filter/manager take over the...
It turned out that the username parameter got passed to loadUserByUsername was always empty. Found this out when I decided to implemtn UserDetailsService to find out what's going on.
Now I don't...
Here is the error log:
46377 [http-8080-Processor24] WARN org.springframework.security.event.authentication.LoggerListener - Authentication event AuthenticationFailureBadCredentialsEvent: ;...
I added the encoder as you suggested but it didn't have any effect.
Here is what it looks like:
<authentication-provider>
<jdbc-user-service data-source-ref="dataSource" />
...
It seems Spring Security doesn't check or do anything within the authorities-by-username-query of my security context.xml file. Do I need to explicitly tell it to check? When I intentionally give an...