Hello,
I'm trying to programmatically replace placeholders using the PropertyPlaceholderHelper.
I'd like to reuse my PropertyPlaceholderConfigurer defined in my context as a PlaceholderResolver...
Type: Posts; User: tsandor; Keyword(s):
Hello,
I'm trying to programmatically replace placeholders using the PropertyPlaceholderHelper.
I'd like to reuse my PropertyPlaceholderConfigurer defined in my context as a PlaceholderResolver...
Thank you very much for this help. It works now.
I've already done, just before I've posted my question. The closest thing I've found was this, but it is not related to the logoutFilter, and especially not when running the latest WebSphere patch...
Hi,
I've configured websphere preAuthenticationFilter successfully on a WAS 6.1.0.15. I configured basic authentication in web.xml that validates against a WebSphere custom UserRegistry.
My...
hi,
I've just stumbled into the same error with Hibernate 3.2.4. Could find any solution?
Thanks, it works! :)
no Jboss, I'm running a simple JUnit test file with 2 POJOs mapped via hbm.xml. The reason for linking the issue was that, they'were using the properties approach for specifying the bytecode provider...
Hi,
I can not change the hibernate bytecode provider from my spring context xml:
applicationContext.xml
<bean id="hibernateSessionFactory"...
hi!
In my project I have to access a map. The map key is a custom java POJO with an id string field and java.lang.Integer for the map value.
I'd like to bind it on my JstlView. See the example...
Hi,
I'd like to ask for help on implementing a sessionFactory or a pooled DataSource(?) to solve my problem. I have a non-standard data-access session with its sessionFactory, that does not use...
Hi,
I have to build an application which uses a non-standard DAO/ORM-Template mechanism. This is a simple CRUD application. What I have to achieve is to build e.g. an update process which uses a...
Hi Ben!
In my current project I have to extend the default ProviderManager, because I have two providers listed, and ProviderManager throws exception only if none of the providers in the list can...
I guess, the micro-container approach will be the way, they want to use. So they might loose compatibility regarding session management in v3.0.x. This is the place where the Spring IoC comes in...
Hi all!
I've seen that the 3.1 release of JBPM has a new configuration approach than the 3.0 had. Can anybody post a spring-config on how to have the JbpmConfinguration and JbpmContext initiated...
Hi,
I'm using ContextSingletonBeanFactoryLocator to have access to my business layer from a class (that is invoked by jBPM3 engine). Everything works fine, I can access my manager, but at the end...
I've set my EhCache as follows found in ehcache-failsafe.xml:
<defaultCache
maxElementsInMemory="10000"
eternal="false"
overflowToDisk="true"
...
Rexxe,
Thanks, I'm using now EhCache.
One more thing to ask: I'm using rememberMe service, but when using it AuthenticationSuccessEvent is not published. How to force a successEvent in this...
Hi,
I've configured acegi security with my spring-app. Now what I'd like to achieve is to save login date when user enters the site.
I have implemented an ApplicationListener listening to...
How can I force my wizard implementation to re/create an empty/new formBackingObject on a special request. E.g. I have a hidden request parameter that holds the info: I'm submitting because I want to...
Hi,
I have to translate exceptions thrown at authentication. How can I do that? I use a resource bundle properties file with the other translated messsages. How can I make Acegi to use a key for...
Hi,
I guess hibernate session is getting closed on after the first page of a WizardController form. I use OpenSessionInView filter in web.xml to achieve lazy initialization, and things are going...
Hi,
I have a JSTL Adapter, showing my forms. Each of my jsp I have set the page
<%@page contentType="text/html; charset=utf-8" %>
so my characters appear right.
But when I enter a special...
Unfortunately MessageResourceAccessor is not request locale-aware by now (SpringWEB v1.1.2) - thanks Chris for the warning. Solution could be that msgSrc.getMessage(String errorCode, Locale locale)...
Thanks Omar. One more question? Can you help me on how I could set only the VelocityEngine to use the numberTool. I have only a VelocityEngine in my mail-velocity-merging manager, so I'm not having...
Hi,
It may be a simple question, but now I'm dealing with velocity-based emails. I've done the tutorial as Matt Raible discussed.
I'd like to use the $format.number() velocity tool (results as...