I solved this problem adding this two properties in my hibernate config.
<property name="hibernate.validator.apply_to_ddl">false</property>
<property...
Type: Posts; User: lindberg713; Keyword(s):
I solved this problem adding this two properties in my hibernate config.
<property name="hibernate.validator.apply_to_ddl">false</property>
<property...
somebody? no replies?
I understand, but this dont help me. I whant customize the spring bean creation because i dont that my customization is transparent. But thanks for help me.
I want customize the way that the...
I see the interface BeanPostProcessor. This interface provides a way to customize beans but in the moment that this interface is called, the bean already is created and your properties set.
What i...
i understand now how this class works.
What i want to do is that any bean created by spring is a Proxy.
I want to define a BeanFactory eg. <bean class="MyBeanFactory"/> and the spring...
If i create a ProxyFactoryBean, how do i configure the spring for use it?
i just declare in the XML like <bean class="myProxyBeanFactory"/> ?
how? the FactoryBean interface does provides support for what i need?
Hello,
I would know how do i customize the bean creation?
I need create bean proxies instead real bean implementation.
I need change the spring behavior so that in the bean creation moment...
'm with the same problem. Any solution?
I want create an BeanFactory or ApplicationContext implementation that creates and returns bean proxies instead of real implementation of bean
Thanks,...
Exactly, i had already done it, but had not yet posted here.
Thanks!
I'm setting sf.setFunction(true); This defines that the procedure is a function.
My stored function:
CREATE FUNCTION sf (p int) RETURNS int
......
My spring code:
import org.springframework.jdbc.object.StoredProcedure;
Post your Adresse class and the web-application-config.xml.
i´m having problems using the SimpleJdbcCall class for call a stored function returning an ResultSet. I have only this problem when the result function is an ResultSet. The message is as if two...
i created my login page. This page access the spring security servlet (j_spring_security_check). Then the spring security creates the authentication (UsernamePasswordAuthenticationToken), but with...
The problem that is in the authentication request from login page to spring security servlet, the spring creates one authentication object and when the request arrives in my AuthenticationProvider...
i'm implementing my own AuthenticationProvider. But this interface only provides me the authentication parameter in the authenticate method. I need also of the company id for my authetication...
how do i add aditional atributes in authentication process?
i need send to my AuthenticationProvider the company id, but the authenticate method in AuthenticationProvider interface only provides...