Hi,
I'm having the same problem with STS opening without prompting to me to select the workspace. The workspace it keeps opening seems to be the default one that is created in My...
Type: Posts; User: bbarth76; Keyword(s):
Hi,
I'm having the same problem with STS opening without prompting to me to select the workspace. The workspace it keeps opening seems to be the default one that is created in My...
Thanks for replying Marten. :)
Apologies for not specifying in my test code that it is setup for transactions. It actually should be extending AbstractTransactionalJUnit4SpringContextTests.
...
I'm running into some strange issues trying to run my integration tests using an in-memory H2 database. I'm on spring 3.0.1 using the <jdbc:embedded-database> tag to declare my database. I've...
Hello,
We are having some Oracle XA issues running on WebSphere 6.1 using Spring 2.0.5. The reason for us using XA is because we have the need to access multiple datasources within one...
No, that wouldn't work because there's no hook back into Acegi to change the authorities on the Authentication object so that when the FilterSecurityInterceptor or AuthorizeTag attempts the...
One of the requirements that I have for a system that I am working on is to dynamically change a user's GrantedAuthorities at runtime.
My UserDetailsService builds my UserDetails object from a...
Was there a reason why a method wasn't included in the ReflectionUtils class to get all of the declared fields for a particular class and all super classes? There is a method to get all of the...
How about using something like this?
SELECT * FROM ARTICLE WHERE TITLE LIKE '%' || :title || '%'
Thomas,
That's what I was afraid you'd say :(. Since I work for a large company and have to comply with company standards, switching the drivers right now is not an option that I can take.
I...
Hi,
We are in an environment where we are locked in with using Oracle 9i. We are using the Spring 2.0 Named Parameter functionality for all of our queries. However, we just now ran into a case...
Hi,
If you are still having problems, use the Oracle 10g driver. We were having the same problem with the 9i driver and after upgrading to 10g it worked.
-Ben
jh,
Thanks for the reply! One question, how do you setup your spring configuration to use your custom filter?
-Ben
Hi,
I'm wondering if it would be feasible to use Acegi Security in the following situation. I'm developing a web application using Spring, Struts, and Tiles. My company uses an enterprise wide...
Check out this thread I posted a few days ago.
Is this similar to what you are looking for?
-Ben
Thanks for your help Thomas, it's working now!
-Ben
Sure, I can give it a shot.
This is basically what my code does:
public class NamedParameterTest extends NamedParameterJdbcDaoSupport {
public String createTestQuery() {
...
Hi,
I'm working with Spring 2.0 M5 JDBC, in particular the NamedParameterJdbcTemplate, and I'm having some difficulty retrieving data back using an IN condition in my SQL statement.
Say I have...