Any ideas anyone?
Type: Posts; User: borfnorton; Keyword(s):
Any ideas anyone?
Hi,
I have an existing RESOURCE_LOCAL DataSource that happens to be defined in a META-INFO/persistence.xml file
However I need to use/inject the DataSource to a non-JPA piece of code, that just...
Hi all - we are using SpringLDAP with the standard JNDI Sun provider for connections etc.
Is it possible to make SpringLDAP use connections managed by the UnboundID SDK? It appears that UnboundID...
Hi,
We are using the latest version of Spring LDAP against an AD server. I am unable to re-produce this in a unit test (I tried updating with the same value and a different value as well).
...
Hi,
I have a web application (WAR) being deployed on Jboss 4.2.2 to JBOSS/server/all/deploy
A class in my WAR file references a shared library in JBOSS/server/all/lib
My shared library in...
Hi,
We are talking to Tivoli TDS 6.1
We are coding an application in Java using JNDI. We are using Sun's standard com.sun.jndi.ldap.LdapCtxFactory, but would like to get schema information from...
awesome, thanks
So does anyone know what the contents of spring.schemas and spring.handlers should be in my case?
Hi,
My application context file looks like this (the relevant portion only)
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
...
can anyone help me with this? Thanks!
Hi,
I've been struggling with this for some time. I simply want all classes marked with @Entity to be able to be persisted without having to list them in persistence.xml. Using Spring 3.0.1 and...
a) I have a class "MyClass" annotated with @Transactional
b) This bean is wired up in Spring and Spring is configured with
<tx:annotation-driven transaction-manager="transactionManager" />...
Hi,
I have a line of code that did
if (x instanceof MyClass) {
.. do something
Once I added @Transactional to the top of MyClass, the above test now fails due to some proxy spring is...
Hi,
I have a unit test class that is declared as such:
@Transactional
@TransactionConfiguration(defaultRollback = false)
@ContextConfiguration
public class JPAStoreTest extends...
Hi,
I am trying to enable anonymous authentication using Spring Security, but I keep getting this error when I add
<anonymous/> to the HTTP configuration and run my unit tests through maven....
Hi,
I just upgraded from 0.7 to 0.8 and I get all sorts of trace exceptions on startup. My app still boots up OK and functions properly however, it seems like there should be an option to suppress...
Is the fix for this coming out in 0.9? and when will that be released?
I have a constructor that takes a string. I am intentionally passing blank when I do a:
<constructor-arg value=""/>
Spring AS throws this error, rather than passing null or "" to my constructor...
I agree with this. leave logging out of SpringAS. Right now I have my own logging implementation and if I could just listen for certain events from SpringAS and log those if I care, that would be...
Chris,
In looking at the XMLApplicationContext, currently the only way to load properties into the configuration is via the property element that points to a file (uri). Can some additional ways be...
Hi,
Is there a page for spring AS that lists where the official source, docs etc reside?
Chris,
a) the patch above fixes the issue. When my objects element has all the schema xsi info in it, now the imports are pulled in properly thanks. I think this is an e4x bug because in my...
Hi,
i am using Spring AS for apps that are not just in the web-browser but on the desktop (both AIR and within swf2exe apps like MDM Zinc). I need to load a config XML file that does "imports" of...
I am using the no-dependancies SWC (the smaller file)
Hi,
Just upgraded to 0.7 with the AS3Reflect package imported separately.
I noticed that now both the Spring AS (w/out dependencies) and the AS3Reflect swc include the ClassNotFoundError hence...
Interesting, thanks!
Note, Adobe should just address this nasty sticking point and give us an option in the compiler to include all classes in a project even if not directly referenced. They must...