Search:

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

Page 1 of 3 1 2 3

Search: Search took 0.01 seconds.

  1. PersistenceExceptionTranslationPostProcessor startup performance issues

    I am utilizing Spring 3.0.5 with Hibernate 3.6/JPA 2.0. I am using orm files and persistence.xml files, with annotations for wiring in the EntityManager (so I am utilizing...
  2. Maven is not what I want to use. We don't create...

    Maven is not what I want to use. We don't create war files per environment, hence the need for Spring and the property placeholder. Otherwise Maven would have to be used to build an env specific war...
  3. Thanks for the suggestion, I am aware of the...

    Thanks for the suggestion, I am aware of the filter capability in Maven and unfortunately that won't help me. I want the timeout value to use a property so that I can change it for multiple...
  4. Context property default for field that is an integer

    In using Spring Transaction schema (with Spring 3.0.5), I want to be able to pull the timeout for a transaction from a property file. The problem is that the field in the transaction schema is...
  5. I found the answer in the following thread: ...

    I found the answer in the following thread:

    https://jira.springsource.org/browse/OSGI-364

    The following line has to be added:

    reader.setNamespaceAware(true);
  6. Turning Off Schema Validation in JUnit Causes Persistence Failures

    I am trying to test the following thread (because I want to turn off schema validation in a war which bootstraps the context files). I am using Spring 3.0.5 and JPA 2.0/Hibernate 3.6.5.
    ...
  7. Thanks, but I am specifically asking whether...

    Thanks, but I am specifically asking whether Spring has a feature to ignore duplicate property-placeholder files instead of wasting processing time reloading/merging them. And if not, how can I...
  8. Does Spring ignore duplicate property-placeholder files?

    We have multiple project jars that get used in different war files. So in order to compile the specific jar files, each jar's Spring context file has a property-placeholder for a file called...
  9. Replies
    1
    Views
    1,542

    Property Placeholder for Imports/Bean Refs

    Can I use a property loaded from property-placeholder to make a context import dynamic?


    <context:property-placeholder location="classpath*:/enterprise.properties"/>
    <import...
  10. Simple Configuration Question on Annotation Configs

    We are using JPA/Hibernate and the Transactions via AOP, however, we are not using any annotations (all JPA configuration is in persitence and orm files and transactions are solely through AOP). The...
  11. Recursion? - AOP pointcuts applied multiple times

    I have the following pointcuts for transactions (using JPA/Hibernate 3.6)

    <tx:advice id="GlobalDataTxAdvice" transaction-manager="GlobalDataTransactionManager">
    <tx:attributes>
    ...
  12. Replies
    0
    Views
    998

    War to War invocation in same JVM

    If I have two wars running in the same WebLogic instance and I want to call a method from one of the wars to the other, do I need to use Spring Remoting?

    Thanks...jay
  13. Replies
    10
    Views
    2,144

    From what I have working, it appears you cannot...

    From what I have working, it appears you cannot wildcard the name of context files that exist in another jar and not directly in the war. You can only wildcard their path.

    You can however...
  14. PropertyPlaceholder - Import via Property

    Can I use a property loaded from property-placeholder to make a context import dynamic?

    <context:property-placeholder location="classpath*:/enterprise.properties"/>
    <import...
  15. Replies
    1
    Views
    1,272

    I may have answered my own question by removing...

    I may have answered my own question by removing the read-only="true", now the no-rollback-for works.
  16. Replies
    1
    Views
    1,272

    no-rollback-for not working for me

    I have the following configuration



    <tx:advice id="fsbLocalDataTxAdvice" transaction-manager="fsbLocalDataTransactionManager">
    <tx:attributes>
    <tx:method name="get*"...
  17. ORM files in a jar - reference in persistence.xml

    I have my orm files in a jar separate from my jar/war that has the persistence.xml.

    How do I reference the orm files from within the persistence.xml when the orm files are in a jar/war, and if I...
  18. Replies
    0
    Views
    432

    Multiple Wars / Same JNDI DataSource

    If I have multiple wars that each need database access and they access the same datasource, is it okay for each war to have it's own persistence.xml/EntityManagerFactory configuration, or should...
  19. Spring context files available to multiple wars.

    I want to be able to deploy a jar full of Spring context files that configure my EntityManagers, and my JMSTemplates, etc. and have separate war projects that can refer to these context files on the...
  20. Batch Update/Insert/Delete with AOP Transactions

    There is not a lot of good documentation on how to do batch updates/inserts/deletes with JPA like there are for JDBC. But the Hibernate docs show an example such as:

    EntityManager entityManager =...
  21. ApplicationContext - explicitly loaded or bootstrapped through war

    I have a jar file that includes code and an applicationContext.xml, to wire up some default functionality.

    This jar maybe used by another jar or used by a war file. I assume if it is used by a...
  22. Thread: SAML Support?

    by jaybytez
    Replies
    3
    Views
    2,960

    Update on SAML Assertions

    So just a little update on this post I made earlier.

    I created my own version of the WSS4J Interceptor class that overrides the initializeRequestData method so that I could inject the pathing for...
  23. Spring WS with REST - Understanding vision and their separation

    I know this question has been asked many times and I hope I can get some clarifications.

    But just like the fact that OXM is useful for more that just data binding for web services, but is also...
  24. Thread: SAML Support?

    by jaybytez
    Replies
    3
    Views
    2,960

    Spring doesn't appear to support SAML

    Unfortunately my research so far seems to lead that Spring Web Services framework does not support SAML. I don't know if CXF did, but Axis2 indirectly supports SAML through Rampart.

    Spring does...
  25. Thread: SAML Support?

    by jaybytez
    Replies
    3
    Views
    2,960

    SAML Support?

    It appears that there currently is not SAML Support from Spring Web Services or Spring Security. Is this correct?

    I saw that there is a project inflight for Spring Security Extensions to create a...
Results 1 to 25 of 55
Page 1 of 3 1 2 3