I think it may have been a bad installation. I had to do 3 or 4 tries before i was able to get my installs to the point where certain things would work.
The only thing I didn't do on my last...
Type: Posts; User: BStopp; Keyword(s):
I think it may have been a bad installation. I had to do 3 or 4 tries before i was able to get my installs to the point where certain things would work.
The only thing I didn't do on my last...
Here's what i've done:
Download STS zip file from here http://download.springsource.com/release/STS/2.5.2/dist/e3.6/springsource-tool-suite-2.5.2.RELEASE-e3.6.1-win32-x86_64.zip
By the way, the...
I'm running STS 2.5.2 64bit on Windows 7 64bit. I have only installed the Subversive plug-in (with connectors) and the Groovy-Eclipse feature.
Every time i try to switch my workspace from one to...
Dan,
I had already read that page, however it doesn't mention anything regarding the conflict between using the Oracle Proxy and the High Concurrency datasource. I say that there is a conflict...
According to the documentation, in order to use the "High-Concurrency JDBC Datasource" you're supposed to use the default factory:
org.apache.tomcat.jdbc.pool.DataSourceFactory
However, I...
I wasn't really sure where to put this, so I figured this was the best place.
I'm working on building some async/threaded work in a JEE environment. One of my coworkers has already implmented...
Ok, that's kind of what i was figuring. So my next question is:
Is there ever going to be a way to override each of the filter definitions and still use the <http> namespacing?
I think there...
I know that if you use the <http> element in the Security namespace, the resulting FilterChainProxy will honor the configured order of the plugged in Filter(s).
However, i defined a...
Unfortunately, I'm using 1.2.x, which doesn't have a src.zip file in the spring-w/dependencies jar. But thank you for the info.
-B
I was wondering.. why isn't the source included for the spring-mock jar file? I'm looking for the org.springframework.test package specifically, but i noticed that neither the ...mock or ...test...
I have a need to refresh my ApplicationContext whenever a file on the system has changed, or at some arbitrary time.
I was wondering what is the best way (method/design) of going about invoking...
We're using DB2.
There is actually, (imo) valid reason for partitioning of tables: Customer A's data can't coexist with Customer B's data. All customers have rights to Application-X which accesses...
Hopefully this post makes sense and someone can assist me. I have also posted this in the Hibernate User's forum as it is specifically a Hibernate question, however I'm attempting to use Spring's...
for the quick response, it makes perfect sense.
Is there a timeline for the project to reach 2.0?
-B
You can define the DefaultTargetUrl to be a relative URL ("/home.html") or an absoluteUrl ("http://www.mysite.com/mysite/home.html").
If your system is redirecting to the /deployedcode/ URL, as...
Version 1.0.4 of the Acegi pom defined the Spring version dependency as 2.0.4. This latest release of Acegi (1.0.5) reverted the Spring dependencies to the 1.2.x line.
Why the...
I've defined several transaction attributes in my Spring file:
<property name="transactionAttributes">
<props>
<prop key="search*">PROPAGATION_REQUIRED,readOnly</prop>
<prop...
Well i did end up finding it in the API for 1.2.X. As for why it's not referenced via SessionFactoryUtils.getSession(....), I think I have a plausable explination for that as well:
It's a static...
I'm reading up on the DAO transactional support mechanisms that Spring offers, and I came across what appears to be an error. According to this page:...