Nevermind, sorted with read only transactions for some of the services.
Type: Posts; User: Taariq; Keyword(s):
Nevermind, sorted with read only transactions for some of the services.
Hi
I'm trying the latest version of spring-data-jpa, webflow and all the core spring libs of 3.0.7 release.
Before the switch to extending JpaRepository the session only flushed at the very end...
Hmmm, I thought this would be a really common problem for everyone, makes me think there's something simple in webflow that deals with this or nobody else cares about more trips to the db or whatever...
Hi
This is a really common problem for us and we've solved it various ways over the years, now I'm wondering if the best web flow way is different to the ways I've been trying since starting...
That's what I meant I did, thanks.
<evaluate expression="txanWebFlowHelper.storeTransactionType(
flowRequestContext, auditConstants.LT_TXAN_TYPE_CD_VEHICLE_LICENSING)"/>
What I've done for now is to have a constants class define the Integer values, this class is the defined as a spring bean.
Then a helper class takes in the Integer and stores the enum in scope.
Of...
Some of my use cases rely on certain records being created or updated when the session is started or ended. Some output documents will also be generated here.
This code is in a...
I think I stumbled onto something either so obvious nobody mentions it or I simply didn't see this in the docs I read.
The first method called by the flow has to be transactional, if it's not, it...
Maybe this is the wrong forum for this but like I said I experience it in webflow, so I assumed others did too.
Difficult to find related threads using the search.
In the test the logs are making...
Hi
I have unit tests that confirm that after inserting a record it can be searched and found as expected within the same transaction, before committing.
However, when I use webflow the record...
When someone suggested that I thought it was a more suspicious looking hack than the one I put in there.
I guess at the time it looked like 50 lines of code to moreorless copy/paste from...
Fixed with a quick hack extending the ldap provider and calling super manually when the fingerprints are valid.
If there's a more elegant solution I'd like to know about it, but it's no big deal...
Having implemented the suggestion in this thread, I need to understand why one provider's success results in total success when I want both providers to be checked and if both are successful then...
Thanks for the feedback, I'll look at that.
Tried the search for a good approach, the word "biometrics" isn't found at all and the results for "fingerprints" aren't what I'm after.
We're using a custom GUI that connects using http-client to...
I admit I have been skimming over the reference guides when more than that is needed.
Thanks for your help.
Hehe, yes that would be pretty useless, and that's what I understood originally and confused myself along the lines.
So then back to my original question, if bind puts it there, and I confirmed...
Oh, what I meant was that I'd have some code outside of Spring LDAP that inserts/updates users, but also the job of that subsystem is to call Spring LDAP methods such as LdapTemplate.bind(...) whose...
Ah, this makes more sense, thank you.
To ensure I understand correctly, I will design a user management system that uses spring-ldap only for authentication, and included in that is to add new...
Hi
There are simple samples to authenticate, but even the Spring Security book doesn't go beyond this.
My requirement is to also add new users to ldap, are there any docs or tutorials on this?...
That hit the spot, thanks.
Hi
I have a multi-project with parent pom and a bunch of siblings.
One of those is the web project, which depends on beans defined in a different project packaged as a jar.
I know that for...
Hi
At the moment we have a swing client that connects via rmi and we cannot change the client at all, what we want to do though is change the way our custom transactions work, we can change...