Search:

Type: Posts; User: mattinger; Keyword(s):

Search: Search took 0.03 seconds.

  1. Issues with custom namespaces in Weblogic 10.3

    I'm trying to deploy a spring based application (2.0.7) into weblogic 10.3.

    I have created a custom namespace, but upon trying to load the handler, I get the following:

    06-Mar-2009 13:03:18...
  2. OracleXADataSource/JtaTransactionManager and Auto-Commit

    I'm having some issues using oracle.jdbc.xa.client.OracleXADataSource (v 10.2.0.3) along with JtaTransactionManager (spring 2.5.6) and Jotm 2.0.10.

    I've got a pretty standard configuration for the...
  3. Replies
    3
    Views
    4,728

    JNDI DataSources and Oracle RAC FCF

    I am interested in using the Oracle RAC and FCF support, but all the examples are predicated around the datasource being defined in the spring beans file via one one of the <orcl:pooling-datasource >...
  4. Replies
    2
    Views
    4,480

    JPA, Hibernate and JOTM

    I am trying to configure the following:

    I want to use JPA as the persistence API, backed by hibernate.
    I want the Hibernate EntityManger to participate in JTA transactions.
    I also do not want to...
  5. Replies
    1
    Views
    935

    JOTM with Tomcat Managed Datasource

    I have the following situation:

    I want to use JOTM to manage transactions in my application. However,
    I'd like to have the web container (tomcat) manage the datasource for me.
    I've seen...
  6. Replies
    7
    Views
    1,912

    Public / Private beans

    I know there is currently no support for declaring root beans as public or private. However, I think that kind of ability would be extremely helpful in enforcing published api's. In most cases, a...
  7. Replies
    7
    Views
    1,535

    Object graph

    One solution would be to have a FactoryBean do this for you:


    public class AFactoryBean
    implements FactoryBean,
    InitializingBean {

    private X x;
    ...
  8. Replies
    15
    Views
    3,873

    Feature Set

    Also, is there any available list of features / changes which are planned for 1.2, as well as a potential release schedule?
  9. Replies
    10
    Views
    4,592

    External Properties

    Why not create a property configurator which can read your servlet initialization parameters? You can then set all your datasource information in your servlet context parameters, but not have to use...
  10. Replies
    15
    Views
    3,873

    Spring 1.2 / Annotations

    Is there any cvs branch/tag which i can use to get the 1.2 code from CVS? I was wondering in particular if using annotations as the source of validation configuration is available yet in 1.2...
  11. Replies
    3
    Views
    3,831

    BeanDoc

    BeanDoc is nice if you already have your deployment files setup, you can document them. However, in the design phase, this doesn't really help you model the inject dependencies, supplied beans,...
  12. Replies
    3
    Views
    3,831

    Modelling Spring Deployment

    I'm currently doing an application design. This design uses the standard DAO and Service patterns to provide access to the application's domain model. There are Dao interfaces, and the...
  13. Thread:

    by mattinger
    Replies
    2
    Views
    1,660

    element

    Yes, they are ordered, but it's relatively easy to come up with a dtd that would allow the import elements to be pretty much anywhere. Furthermore, an Xml Schema Document would be much more...
  14. Thread:

    by mattinger
    Replies
    2
    Views
    1,660

    element location

    Is there any technical reason that anyone knows of why the <import> element must come before any <bean> elements in the beans.xml file?
  15. Encryptors/Decryptors

    An even more flexible approach is something like the following:

    1. Create a general interface for cryption, which can be either
    direction


    public interface Cryptor &#123;
    ...
  16. Replies
    2
    Views
    1,916

    You can use DefaultListableBeanFactory and...

    You can use DefaultListableBeanFactory and RootBeanDefinition;

    DefaultListableBeanFactory factory = new DefaultListableBeanFactory();
    RootBeanDefinition beanDef = new RootBeanDefinition(clazz,...
  17. Replies
    1
    Views
    2,337

    XInclude and XmlBeanFactory

    Does XmlBeanFactory support any type of file inclusion, such as XInclude to allow the beans file to be broken out into multiple layers of bean xml files? Or, would it be necessary to manually use...
Results 1 to 17 of 17