active questions tagged spring - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T10:02:48Zhttp://stackoverflow.com/feeds/tag/springhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1905687/xapool-connection-timed-out0xapool connection timed outHappyEngineer2009-12-15T07:11:20Z2009-12-15T07:11:20Z
<p>I'm using xapool (org.enhydra.jdbc.pool.StandardXAPoolDataSource) with Spring and JPA and I'm getting connection timed out errors. I found the "checkLevelObject" setting, but it doesn't seem to have helped. Should that have fixed it? Are there other setting that I could use to test the connections and have them replaced without impacting the application?</p>
http://stackoverflow.com/questions/1904878/understanding-spring-annotation-di1Understanding Spring annotation DIcometta2009-12-15T02:36:49Z2009-12-15T06:58:42Z
<blockquote>
<p>@Repository @Service @Controller
@Component</p>
</blockquote>
<p>-->only use for spring managed bean (no need weaving) <br/>
-->@repository, @Service @controller is actually a @Component , just naming easier for programmer to understand</p>
<pre><code>@Configurable
</code></pre>
<p>--->used for non spring managed bean (use with weaving)</p>
<pre><code>@Autowired
</code></pre>
<p>--> use for DI for both cases above </p>
<p>Is my understanding correct?</p>
http://stackoverflow.com/questions/1905540/spring-drools-integration0Spring-Drools integration?Tong Wang2009-12-15T06:26:52Z2009-12-15T06:26:52Z
<p>There used to be spring-modules project that provides this integration; however, that project is deprecated now. Does anyone now if there is any continued support for this integration? Thanks.</p>
http://stackoverflow.com/questions/1905316/hibernate-configuration-xml2Hibernate Configuration Xmlcedric2009-12-15T05:17:26Z2009-12-15T06:05:05Z
<p>Hi. I am developing a java web application using hibernate as ORM. Is it possible to merge Hibernate.cfg.xml with the applicaion-config.xml?</p>
http://stackoverflow.com/questions/1904745/advantage-of-using-applicationcontext-getbean-vs-configurable0advantage of using applicationcontext.getbean vs @configurablecometta2009-12-15T01:43:42Z2009-12-15T03:17:35Z
<p>Hi,
what is the advantage of using <strong>@configurable</strong> compared to on <strong>bean that not managed by bean doing di</strong> by <strong>applicationcontext.getbean</strong>? any anyone list pro and cons?</p>
http://stackoverflow.com/questions/1762453/rewrite-spring-security-redirect-urls2Rewrite spring-security redirect URLsptomli2009-11-19T10:50:23Z2009-12-15T01:14:19Z
<p>I'm trying to get Tuckey UrlRewriteFilter to tidy up URLs for my webapp. One problem I've got is that when spring-security notices that an anonymous user is trying to access a protected resource it redirects to a URL which includes the servlet path.</p>
<p>What I'd like is, by example:</p>
<pre><code>> GET http://localhost:8080/my-context/protected-resource
< Location: http://localhost:8080/my-context/login
</code></pre>
<p>What I currently get is:</p>
<pre><code>> GET http://localhost:8080/my-context/protected-resource
< Location: http://localhost:8080/my-context/-/login
</code></pre>
<p>Relevant documents I've found so far:</p>
<p>DefaultRedirectStrategy, which does the actual redirect in question: <a href="http://static.springsource.org/spring-security/site/docs/3.0.x/apidocs/org/springframework/security/web/DefaultRedirectStrategy.html" rel="nofollow">http://static.springsource.org/spring-security/site/docs/3.0.x/apidocs/org/springframework/security/web/DefaultRedirectStrategy.html</a>. It has a contextRelative property which is tempting but I don't think is going to cut it, if I can even find a way of configuring it.</p>
<p>A blog post that helped get me this far: <a href="http://nonrepeatable.blogspot.com/2009/11/using-spring-security-with-tuckey.html" rel="nofollow">http://nonrepeatable.blogspot.com/2009/11/using-spring-security-with-tuckey.html</a></p>
<p>What I'd like to know is:</p>
<ol>
<li>Can/should I convince Tuckey to rewrite the Location header. <outbound-rule> doesn't seem to help any here.</li>
<li>Can/should I somehow tweak the SS config to emit the rewritten URL. I don't think this is quite as tidy, as it'd break if rewrite was disabled.</li>
</ol>
<p>web.xml looks like</p>
<pre><code><filter>
<filter-name>UrlRewriteFilter</filter-name>
<filter-class>org.tuckey.web.filters.urlrewrite.UrlRewriteFilter</filter-class>
<init-param>
<param-name>LogLevel</param-name>
<param-value>log4j</param-value>
</init-param>
</filter>
<filter-mapping>
<filter-name>UrlRewriteFilter</filter-name>
<url-pattern>/*</url-pattern>
<dispatcher>REQUEST</dispatcher>
</filter-mapping>
<filter>
<filter-name>springSecurityFilterChain</filter-name>
<filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
</filter>
<filter-mapping>
<filter-name>springSecurityFilterChain</filter-name>
<url-pattern>/*</url-pattern>
<dispatcher>REQUEST</dispatcher>
<dispatcher>FORWARD</dispatcher>
<dispatcher>INCLUDE</dispatcher>
<dispatcher>ERROR</dispatcher>
</filter-mapping>
<servlet>
<servlet-name>my-servlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>psms</servlet-name>
<url-pattern>/-/*</url-pattern>
</servlet-mapping>
</code></pre>
<p>urlrewrite.xml looks like:</p>
<pre><code><urlrewrite>
<rule>
<from>^/(.*)$</from>
<to>/-/$1</to>
</rule>
</urlrewrite>
</code></pre>
<p>applicationContent-security.xml looks like:</p>
<pre><code><http auto-config="true">
<!-- allow GET requests to /login without authentication -->
<intercept-url pattern="/-/login" method="GET" filters="none"/>
<intercept-url pattern="/-/admin/**" access="ROLE_ADMIN"/>
<intercept-url pattern="/-/**" access="ROLE_USER"/>
<form-login login-page="/-/login"
login-processing-url="/-/login.do"
authentication-failure-url="/-/login?login_error"
default-target-url="/-/index"
always-use-default-target="true"/>
<logout logout-url="/-/logout"
logout-success-url="/-/login"/>
<access-denied-handler error-page="/-/access-denied"/>
</http>
</code></pre>
http://stackoverflow.com/questions/1887870/decrypting-message-with-a-spring-web-service-client1Decrypting Message with a Spring Web Service ClientZoidberg2009-12-11T12:46:59Z2009-12-15T01:11:18Z
<p>Hi,</p>
<p>I have been struggling with Spring Web Service encryption for days and I can't figure out how to get Spring's encryption to work with the CastorMarshaller. Whenever I have the server encrypt the resulting message the client doesn't seem to be decrypting it before it attempts to Unmarshal it and I get an error.</p>
<p>Here is the server side configuration</p>
<pre><code><!-- Marshaller -->
<bean id="castorMarshaller" class="org.springframework.oxm.castor.CastorMarshaller">
<property name="mappingLocation" value="classpath:mapping.xml" />
</bean>
<!-- End points -->
<bean id="holidayMarshallingEndpoint" class="com.mycompany.hr.ws.HolidayMarshallingEndPoint">
<property name="marshaller" ref="castorMarshaller" />
<property name="unmarshaller" ref="castorMarshaller" />
</bean>
<bean id="holidayListEndpoint" class="com.mycompany.hr.ws.HolidayListEndPoint">
<property name="marshaller" ref="castorMarshaller" />
<property name="unmarshaller" ref="castorMarshaller" />
</bean>
<!-- End point mapping -->
<bean class="org.springframework.ws.server.endpoint.mapping.PayloadRootQNameEndpointMapping">
<property name="mappings">
<props>
<prop key="{http://mycompany.com/hr/schemas}HolidayListRequest">holidayListEndpoint</prop>
<prop key="{http://mycompany.com/hr/schemas}HolidayRequest">holidayMarshallingEndpoint</prop>
</props>
</property>
<property name="interceptors">
<list>
<ref local="wsSecurityInterceptor" />
</list>
</property>
</bean>
<!-- Wsdl definition -->
<bean id="holiday" class="org.springframework.ws.wsdl.wsdl11.DefaultWsdl11Definition">
<property name="schema" ref="schema"/>
<property name="portTypeName" value="HumanResource"/>
<property name="locationUri" value="/holidayService/"/>
<property name="targetNamespace" value="http://mycompany.com/hr/definitions"/>
</bean>
<!-- Schema -->
<bean id="schema" class="org.springframework.xml.xsd.SimpleXsdSchema">
<property name="xsd" value="classpath:hr.xsd"/>
</bean>
<!-- RSA key store for encryption -->
<bean id="trustStore" class="org.springframework.ws.soap.security.support.KeyStoreFactoryBean">
<property name="password" value="******"/>
<property name="location" value="classpath:keys.jks"/>
</bean>
<!-- Security interceptor which encrypts message -->
<bean id="wsSecurityInterceptor" class="org.springframework.ws.soap.security.xwss.XwsSecurityInterceptor">
<property name="policyConfiguration" value="classpath:wss-server-config.xml" />
<property name="callbackHandlers">
<list>
<bean id="keyStoreHandler" class="org.springframework.ws.soap.security.xwss.callback.KeyStoreCallbackHandler">
<property name="trustStore" ref="trustStore" />
<property name="keyStore" ref="trustStore" />
<property name="privateKeyPassword" value="*****" />
</bean>
<bean id="passwordValidationHandler" class="org.springframework.ws.soap.security.xwss.callback.SimplePasswordValidationCallbackHandler">
<property name="users">
<props>
<prop key="cafe">babe</prop>
</props>
</property>
</bean>
</list>
</property>
</bean>
</code></pre>
<p>The server's xwss security configuration</p>
<pre><code><xwss:SecurityConfiguration xmlns:xwss="http://java.sun.com/xml/ns/xwss/config">
<xwss:RequireUsernameToken passwordDigestRequired="false" nonceRequired="false"/>
<xwss:Encrypt>
<xwss:X509Token certificateAlias="rsa_key" />
<xwss:Target type="xpath">//SOAP-ENV:Body</xwss:Target>
</xwss:Encrypt>
<xwss:RequireEncryption>
<xwss:Target type="xpath">//wsse:UsernameToken</xwss:Target>
</xwss:RequireEncryption>
</xwss:SecurityConfiguration>
</code></pre>
<p>The client's spring configuration</p>
<pre><code><!-- Marshaller -->
<bean id="castorMarshaller" class="org.springframework.oxm.castor.CastorMarshaller">
<property name="mappingLocation" value="classpath:mapping.xml" />
</bean>
<!-- Schema for objects used in communication -->
<bean id="schema" class="org.springframework.xml.xsd.SimpleXsdSchema">
<property name="xsd" value="classpath:src/java/hr.xsd"/>
</bean>
<!-- Encryption handler -->
<bean id="keyStoreHandler" class="org.springframework.ws.soap.security.xwss.callback.KeyStoreCallbackHandler">
<property name="trustStore" ref="trustStore" />
<property name="keyStore" ref="trustStore" />
<property name="privateKeyPassword" value="*****" />
</bean>
<!-- Web service client -->
<bean id="webserviceClient" class="com.mycompany.ws.client.WebServiceClient">
<property name="defaultUri" value="http://localhost:8084/SpringWebservice/" />
<property name="marshaller" ref="castorMarshaller" />
<property name="unmarshaller" ref="castorMarshaller" />
<property name="interceptors">
<list>
<ref local="wsSecurityInterceptor"/>
</list>
</property>
</bean>
<!-- RSA Keys -->
<bean id="trustStore" class="org.springframework.ws.soap.security.support.KeyStoreFactoryBean">
<property name="password" value="*****"/>
<property name="location" value="classpath:keys.jks"/>
</bean>
<!-- Security Interceptor which SHOULD DECRYPT!! -->
<bean id="wsSecurityInterceptor" class="org.springframework.ws.soap.security.xwss.XwsSecurityInterceptor">
<property name="policyConfiguration" value="classpath:wss-client-config.xml" />
<property name="callbackHandlers">
<list>
<ref local="keyStoreHandler" />
</list>
</property>
</bean>
</code></pre>
<p>Client's xwss configuration</p>
<pre><code><xwss:SecurityConfiguration dumpMessages="true" xmlns:xwss="http://java.sun.com/xml/ns/xwss/config">
<xwss:UsernameToken name="cafe" password="babe" useNonce="false" digestPassword="false"/>
<xwss:Encrypt>
<xwss:X509Token certificateAlias="rsa_key" />
<xwss:Target type="xpath">//wsse:UsernameToken</xwss:Target>
</xwss:Encrypt>
<xwss:RequireEncryption>
<xwss:X509Token certificateAlias="rsa_key" />
<xwss:Target type="xpath">//SOAP-ENV:Body</xwss:Target>
</xwss:RequireEncryption>
</xwss:SecurityConfiguration>
</code></pre>
<p>What I am doing, is encrypting the user token when a request is made from the client to the server. The server will then return a message, encrypting only the body of the response message. The error occurs on the client when the client attempts to unmarshal the message before it decrypts it. Here is the error message that I get when the result comes back</p>
<pre><code>[Fatal Error] :1:192: The prefix "ns0" for element "ns0:HolidayListResponse" is not bound.
11-Dec-2009 7:45:32 AM com.sun.xml.wss.impl.apachecrypto.DecryptionProcessor decryptElementWithCipher
SEVERE: WSS1203: Exception [ The prefix "ns0" for element "ns0:HolidayListResponse" is not bound. ] while trying to decrypt message
</code></pre>
<p>And here is the soap response itself</p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Header>
<wsse:Security xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" SOAP-ENV:mustUnderstand="1">
<wsse:BinarySecurityToken xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" EncodingType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-soap-message-security-1.0#Base64Binary" ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3" wsu:Id="XWSSGID-1260535530149789027999">
*** Enrypted Stuff ***
</wsse:BinarySecurityToken>
<xenc:EncryptedKey xmlns:xenc="http://www.w3.org/2001/04/xmlenc#">
<xenc:EncryptionMethod Algorithm="http://www.w3.org/2001/04/xmlenc#rsa-1_5"/>
<ds:KeyInfo xmlns:ds="http://www.w3.org/2000/09/xmldsig#">
<wsse:SecurityTokenReference>
<wsse:Reference URI="#XWSSGID-1260535530149789027999" ValueType="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-x509-token-profile-1.0#X509v3"/>
</wsse:SecurityTokenReference>
</ds:KeyInfo>
<xenc:CipherData>
<xenc:CipherValue>pzHcf8Xl1syztzV13z1xrxl1tSPgImDU61Wgsxtr0Yi70zQUfrV441shFF8H/e35haQoNBfWpRMx
V8EV9pdNojaYdrfvAICH9lIcG7hOYI4GwbOtoLZKOXmpMecrwg6Sx1Sm3kq9lpFU6mLlrfwIyZF1
exAIaNRkwg+LYlU3Ys0=
</xenc:CipherValue>
</xenc:CipherData>
<xenc:ReferenceList>
<xenc:DataReference URI="#XWSSGID-12605355320401998698004"/>
</xenc:ReferenceList>
</xenc:EncryptedKey>
</wsse:Security>
</SOAP-ENV:Header>
<SOAP-ENV:Body>
<xenc:EncryptedData xmlns:xenc="http://www.w3.org/2001/04/xmlenc#" Id="XWSSGID-12605355320401998698004" Type="http://www.w3.org/2001/04/xmlenc#Content">
<xenc:EncryptionMethod Algorithm="http://www.w3.org/2001/04/xmlenc#tripledes-cbc"/>
<xenc:CipherData>
<xenc:CipherValue>*** Enrypted Stuff ***</xenc:CipherValue>
</xenc:CipherData>
</xenc:EncryptedData>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
</code></pre>
<p>I know its a lot of information, but i figured I would provide everything. What am I doing wrong, is it impossible to use a marshaller with encryption? Will a different type of security interceptor work where the one I am using has failed. Looking for someone to point me in the right direction.</p>
<p>Thanks!</p>
<p><strong>EDIT</strong></p>
<p>Just found out it has NOTHING to do with the marshaller. I tried reading in the ecrypted message through a stream and I still get the error. It seems its trying to validate the message before it decrypts it.</p>
http://stackoverflow.com/questions/1902997/multiple-database-with-springhibernatejpa1Multiple database with Spring+Hibernate+JPAziftech2009-12-14T19:38:25Z2009-12-15T00:31:17Z
<p>Hi everybody!</p>
<p>I'm trying to configure Spring+Hibernate+JPA for work with two databases (MySQL and MSSQL)</p>
<p>my datasource-context.xml: </p>
<pre><code><?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.5.xsd"
xmlns:p="http://www.springframework.org/schema/p" xmlns:tx="http://www.springframework.org/schema/tx"
xmlns:util="http://www.springframework.org/schema/util">
<!--
Data Source config
-->
<bean id="dataSource" class="org.apache.commons.dbcp.BasicDataSource"
destroy-method="close" p:driverClassName="${local.jdbc.driver}" p:url="${local.jdbc.url}"
p:username="${local.jdbc.username}" p:password="${local.jdbc.password}">
</bean>
<bean id="dataSourceRemote" class="org.apache.commons.dbcp.BasicDataSource"
destroy-method="close" p:driverClassName="${remote.jdbc.driver}"
p:url="${remote.jdbc.url}" p:username="${remote.jdbc.username}"
p:password="${remote.jdbc.password}" />
<bean id="transactionManager" class="org.springframework.orm.jpa.JpaTransactionManager"
p:entity-manager-factory-ref="entityManagerFactory" />
<!--
JPA config
-->
<tx:annotation-driven transaction-manager="transactionManager" />
<bean id="persistenceUnitManager"
class="org.springframework.orm.jpa.persistenceunit.DefaultPersistenceUnitManager">
<property name="persistenceXmlLocations">
<list value-type="java.lang.String">
<value>classpath*:config/persistence.local.xml</value>
<value>classpath*:config/persistence.remote.xml</value>
</list>
</property>
<property name="dataSources">
<map>
<entry key="localDataSource" value-ref="dataSource" />
<entry key="remoteDataSource" value-ref="dataSourceRemote" />
</map>
</property>
<property name="defaultDataSource" ref="dataSource" />
</bean>
<bean id="entityManagerFactory"
class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
<property name="jpaVendorAdapter">
<bean class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter"
p:showSql="true" p:generateDdl="true">
</bean>
</property>
<property name="persistenceUnitManager" ref="persistenceUnitManager" />
</bean>
<bean
class="org.springframework.orm.jpa.support.PersistenceAnnotationBeanPostProcessor" />
</beans>
</code></pre>
<p>each persistence.xml contains one unit, like this:</p>
<pre><code><persistence-unit name="remote" transaction-type="RESOURCE_LOCAL">
<properties>
<property name="hibernate.ejb.naming_strategy" value="org.hibernate.cfg.DefaultNamingStrategy" />
<property name="hibernate.dialect" value="${remote.hibernate.dialect}" />
<property name="hibernate.hbm2ddl.auto" value="${remote.hibernate.hbm2ddl.auto}" />
</properties>
</persistence-unit>
</code></pre>
<p>PersistenceUnitManager cause following exception:</p>
<blockquote>
<p>Cannot resolve reference to bean
'persistenceUnitManager' while setting
bean property
'persistenceUnitManager'; nested
exception is
org.springframework.beans.factory.BeanCreationException:
Error creating bean with name
'persistenceUnitManager' defined in
class path resource
[config/datasource-context.xml]:
Initialization of bean failed; nested
exception is
org.springframework.beans.TypeMismatchException:
Failed to convert property value of
type [java.util.ArrayList] to required
type [java.lang.String] for property
'persistenceXmlLocation'; nested
exception is
java.lang.IllegalArgumentException:
Cannot convert value of type
[java.util.ArrayList] to required type
[java.lang.String] for property
'persistenceXmlLocation': no matching
editors or conversion strategy found</p>
</blockquote>
<p>If left only one persistence.xml without list, every works fine
but I need 2 units...</p>
<p>I also try to find alternative solution for work with two databases in Spring+Hibernate context, so I would appreciate any solution</p>
<p>new error after changing to <strong>persistenceXmlLocations</strong></p>
<p><strong>No single default persistence unit defined in {classpath:config/persistence.local.xml, classpath:config/persistence.remote.xml}</strong></p>
http://stackoverflow.com/questions/1904401/simple-java-spring-binding-question0Simple Java Spring binding questionPCBEEF2009-12-15T00:02:29Z2009-12-15T00:10:29Z
<p>I have the following in my JSP</p>
<pre><code><form:select path="profile">
<form:options items="${allProfiles}" itemValue="id" itemLabel="name" />
</form:select>
</code></pre>
<p>Basically, the selected profile in the combobox binds the the profile member in my object.</p>
<p>This works fine and binds correctly. However, I want the default selected item in the combox to be the profile in my object. It works if I do:</p>
<pre><code><form:select path="profile.id">
</code></pre>
<p>But I'm confused as to why it should work in this way. Shouldn't it change the id of the profile rather than changing the object itself?</p>
http://stackoverflow.com/questions/1903556/cxf-service-assistance0CXF Service Assistanceunknown (google)2009-12-14T21:16:59Z2009-12-14T21:16:59Z
<p>I'm not a Java programmer by any sense, so I apologize if this is a stupid question. I have a service that was given to me, that basically searches the inventory of a future partner. The file they sent is a compiled .jar file, and a wsdl file. The read me file states that it can be used with XFire or CXF. The question is, how do I set this service up using Apache, Tomcat, Spring, or whatever else I need to do? It's a fairly broad question, but I am at a loss as to what to do here.</p>
http://stackoverflow.com/questions/1902604/how-to-inject-a-spring-bean-into-a-seam-context0How to inject a Spring bean into a Seam context?raoulsson2009-12-14T18:25:38Z2009-12-14T20:22:29Z
<p>I need to inject a Spring bean into a Seam context. Unless I declare the spring bean as a EJB, I cannot get it injected into other seam-managed components. But when I do this, all the spring injected fields are usless cause Seam creates new instances at run-time. </p>
<p>I also tried to add the <code><seam:component/></code> element to the spring bean definition and tried to inject it in the container with the <code>@In("beanId")</code> annotation in the target class but I always end up with a NullpointerException...</p>
<p><strong>EDIT:</strong></p>
<p>I read the online articles and did as they say. My spring component is also added to the seam context (I can tell, cause when I define one with the same ID in seam, it complains). Looks like <code>@In</code> is not picking up....</p>
http://stackoverflow.com/questions/1727232/spring-properties-file0Spring Properties Filecedric2009-11-13T05:05:41Z2009-12-14T19:55:33Z
<p>Hi. Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using native2ascii and it solved my problem. Is there no other way of converting the file through setting the encoding to ascii in the configuration files instead of manually converting it by executing native2ascii in command prompt</p>
http://stackoverflow.com/questions/1890287/asp-net-spring-web-flow-how-do-i-get-up-to-speed-fast0ASP.NET => Spring Web Flow: How do I get up to speed fast?roufamatic2009-12-11T19:20:00Z2009-12-14T15:54:33Z
<p>I'm a long-time web developer who's been focusing on ASP.NET/C# for the past 5 years. For my final Masters in Software Engineering project, my team is working with a local company to build them an app using Spring Web Flow (as that's their current tech stack).</p>
<p>I don't know the first thing about building web sites with Java. In fact the last Java dev I did was in the mid-90's when I wrote a calculator applet (back when everyone thought applets would take over the world :-). I know there are things called Servlets, and servlet containers, but I've lived in blissful ignorance about them until now. On the other hand I consider myself a web application expert (not just from ASP.NET, but from classic ASP and Perl before that) and have some experience with the ASP.NET MVC framework as well as Ruby on Rails so I expect to see some similarities with the MVC implementation. But after looking at the myriad xml configuration files last night I had to dig up my old baby blankie and suck my thumb for a bit.</p>
<p>So, Java masters... how would you go about getting a competent developer from a different tech background up to speed on the world of Java web development? What sites have the best tutorials? What books can help? Keep in mind that I have one month before we start our first code sprint, but there should be time for me to do some good late night reading.</p>
http://stackoverflow.com/questions/1240453/two-approaches-of-task-distribution-in-a-multi-tier-application2Two approaches of task distribution in a multi tier applicationMohsin Hijazee2009-08-06T17:55:44Z2009-12-14T14:06:27Z
<p>I am working on a large web application in Java using Spring and Hibernate as the persistence solution. And as for the methodology, we're on Scrum. My role is that of a Scrum Master. I am also the one managing the business requirements and overall direction of the application.</p>
<p>While dividing the requested features into tasks, we have two conflicting point of
views. I'd want you to evaluate both ways and let me know your experience how you all
are doing out there.</p>
<h2>First approach</h2>
<p>Divide the task into layers of it i.e. the POJO, the DAO, Service layer, Controller,
and the View (JSP, JSTL, EL, JavaScript). Now each person works ONLY a single layer.
For instance, the POJO guy is the one who will always develop the POJOs of each
of the features required right from the User management to inventory, accounts and all.</p>
<p>Similarly, DAO guy would always expose the methods for DAO and would do nothing else.
Same for the service. Then are the guys on the controllers only. They do nothing just
write the controllers. And then are the one working on the view. The do nothing but writing
the JSP for the controllers, the JavaScript interaction stuff.</p>
<h1>Upside</h1>
<ul>
<li>Each one is restricted to a particular kind of skill and area. </li>
</ul>
<h1>Downside</h1>
<ul>
<li>Lots of communication overhead. POJO guy tells DAO one, and that one to the layer above it. </li>
<li>Might not yield coherent design.</li>
<li>Your team member's skill set would be jagged, can never work independently if restricted this way.</li>
</ul>
<h2>Second approach</h2>
<p>You divide the requested feature and distribute them based on funtionality instead of
the logical layers they lie in. For instance, if its about the User management, its a single
developer responsible for desigining the POJO, then exposing the DAO for it, writing service layer
on top of it, then exposing it via controller and rendering its views (Of course not the asthetic design issues).</p>
<h1>Up side</h1>
<ul>
<li>The features designed would be coherent. </li>
<li>One developer is building the whole "column" required to implement a particular feature. </li>
<li>Also, developers would get the understanding of the all of the skills required to roll an enterprise application.</li>
</ul>
<h1>Downside</h1>
<ul>
<li>Only criticism has been that it requires more in depth understanding of the framework.</li>
</ul>
<p>I'd like all of you express your ideas on this and how you're doing it in practice. </p>
http://stackoverflow.com/questions/673364/i18n-in-extjs-spring-mvc0i18n in ExtJS & Spring MVCGeekinfo2009-03-23T13:29:50Z2009-12-14T14:00:11Z
<p>I've searched a bit on the web but haven't really found a concrete solution to internationalize an application running ExtJS & Spring MVC. Currently (for testing), I define global javascript variables in the JSP's & assign the string literals using JSTL tags.</p>
<p>Has anyone had any success in coming up w/ a clear/clean/flexible solution on this?</p>
<p>Any thoughts are really appreciated. TIA.</p>
http://stackoverflow.com/questions/1899784/cachesecond-in-spring-module0Cachesecond in Spring moduleRex Mercardo2009-12-14T09:04:21Z2009-12-14T13:47:11Z
<p>I am currently new to web programming and is trying out to learn spring framework. I have basic understanding on Servlets and JSP.</p>
<p>Currently, I am confused on the property cacheSecond on the Spring Controller. Can anybody point me to resource where I could understand below concepts?</p>
<p>I made some reading on browser caching but I am not sure if this is the same as the Response Caching being mentioned in the Spring documentation</p>
http://stackoverflow.com/questions/1900016/get-number-of-free-connections-in-connection-pool0Get number of free connections in connection poolSinuhe the Octopus2009-12-14T10:04:51Z2009-12-14T10:07:34Z
<p>In my project Spring manages connection pool with org.apache.commons.dbcp.BasicDataSource class. Is possible to get how many connections are free or used in current time?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1899556/spring-dependency-injection-in-any-java-bean0spring dependency injection in any java bean cometta2009-12-14T07:59:34Z2009-12-14T08:30:13Z
<p>I have application that look like below</p>
<h2>without spring (prior)</h2>
<p>UI-> service --> <strong>javabean</strong></p>
<p>p.s: my ui call service (not using DI) and i want to remain this way</p>
<blockquote>
<p>new service() </p>
</blockquote>
<p>I want my <strong>javabean</strong> to do DI for certain bean from applicationcontext.xml file.
Should i use Applicationcontext.getBean(the ..xml) file in javabean or is there any better way to do it <strong><em>without changing the service layer</em></strong> and only modify the <strong>javabean in bold</strong>?</p>
http://stackoverflow.com/questions/1899257/spring-faces-javascript0Spring Faces Javascriptcedric2009-12-14T06:31:17Z2009-12-14T07:13:41Z
<p>Hi. I want to ask where do i put my external javascript files and how to access them in the page. I have a problem with getting the relative path for my javascript files.</p>
http://stackoverflow.com/questions/1898696/correct-way-to-pass-service-layer-to-threads0correct way to pass service layer to threadscometta2009-12-14T03:04:16Z2009-12-14T07:09:40Z
<p>my service layer methods are transactional, when i use ExecutorService and submit task to threads, i cannot pass servicelayer as parameter to each threads, as i get error</p>
<pre><code>Dec 14, 2009 10:40:18 AM com.companyx.applicationtest.applicationtestcompanyx.services.threadtestRunnable run
SEVERE: null
org.hibernate.HibernateException: No Hibernate Session bound to thread, and conf
iguration does not allow creation of non-transactional one here
at org.springframework.orm.hibernate3.SpringSessionContext.currentSessio
n(SpringSessionContext.java:63)
at org.hibernate.impl.SessionFactoryImpl.getCurrentSession(SessionFactor
yImpl.java:542)
</code></pre>
<h2><em>my service layer</em> </h2>
<pre><code>ExecutorService executor = Executors.newFixedThreadPool(10);
for (final Object item : CollectionsTest{
executor.submit(new threadtestRunnable((Long)item,collectionAfterfiltered,this)); //'this' is service layer
}
</code></pre>
<ol>
<li>should i pass the service layer to each thread like this?</li>
<li>what is the proper way to do it, i need each thread to call method in service layer? (i'm using spring)</li>
</ol>
http://stackoverflow.com/questions/1871097/gwt-using-domain-models-services-from-external-module-jar1GWT using domain models /services from external module (jar) ?umanga2009-12-09T01:34:56Z2009-12-14T05:04:47Z
<p>Greetings,</p>
<p>We have been using our reusable "user-management" module which was written using Spring/Hibernate(using Doman-Model Pattern).We have used that module in several project integrating with Wicket,JSP and ZK frameworks.
Now I am going to develop an application using GWT.I am completely new to GWT and I noticed that the domain objects should go inside "xxx.xxxx.client" package.
But I want to use our reusable module (jar) and the domain model is in completely different package.
How can I use my domain-model object from this external library in GWT?
How about service interfaces? Do I have to write proxies for them too?</p>
<p>thanks in advance</p>
http://stackoverflow.com/questions/1715214/spring-webflow-validation0Spring webflow validationRichard2009-11-11T13:39:31Z2009-12-14T01:00:01Z
<p>Hi, complete and utter newbie on spring webflow (and indeed, spring mvc).
30 minutes in... got the first page of my flow appearing, which happens to be a captcha, an input field and a submit button.</p>
<p>The actual captcha value is stored in session and i need to validate that the input field values matches the value in session.</p>
<p>In order to do validation, my model is passed a 'ValidationContext'.</p>
<p>Question: i can't seem to access session data from the ValidationContext. How do i do this?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/755101/any-good-tutorials-for-jms-ems-spring0Any good tutorials for JMS + EMS + Spring?dsm2009-04-16T07:36:51Z2009-12-14T01:00:01Z
<p>I have been searching the web, but can't find any good tutorials for getting started with JMS under Spring connecting to TIBCO EMS.</p>
<p>Anyone can point me to a good one?</p>
http://stackoverflow.com/questions/1896853/org-springframework-transaction-annotation-transactional-vs-javax-jdo-annotations1 org.springframework.transaction.annotation.Transactional vs javax.jdo.annotations.Transactionalcometta2009-12-13T15:39:24Z2009-12-13T16:11:11Z
<p>when using spring <code>@Transcational</code> on service layer, I will need to put <code><annotation driven></code> on xml file. </p>
<ol>
<li><p>may i know can <code>javax.jdo.annotations.Transactional</code> be used on service layer just like spring does? do not need to configure xml files. etc?</p></li>
<li><p>can <code>javax.jdo.annotations.Transactional</code> be used on service layer independent on whether i using hibernate/jpa/jdo at the dao layer? need to configure any other things beside marking methods with <code>@Transactional</code>?</p></li>
<li><p>any different/limitation between <code>javax.jdo.annotations.Transactional</code> and <code>org.springframework.transaction.annotation.Transactional</code>?</p></li>
</ol>
http://stackoverflow.com/questions/1887772/any-existing-way-to-make-sure-beans-defined-in-spring-xml-are-stateless2Any existing way to make sure beans defined in spring xml are stateless?bing2009-12-11T12:29:41Z2009-12-12T14:01:50Z
<p>Working on a large size project, we started to use spring to manage our dependency injection. Since most dev are migrate from coding stateful class, we found some of stateless bean actually contain instance variables which themself are stateful.</p>
<p>Correct me if I am wrong, it shouldn't be too tough to write a unit test to verify that all the stateless bean defined in spring xml actually is stateless (i.e. bean shouldn't have any instance variable which never defined in spring xml). Before I will try myself to write one, wonder if there is any existing tool out there to check that?</p>
<p>Thx</p>
http://stackoverflow.com/questions/1892587/getting-hibernate-exception-org-hibernate-queryexception-could-not-resolve-pro1Getting Hibernate Exception : org.hibernate.QueryException: could not resolve propertyNirmal2009-12-12T06:41:25Z2009-12-12T07:45:10Z
<p>Hello All...</p>
<p>I have one table with composite key attribute..</p>
<p>For that i have made 2 beans for hibernate annotations mappings..</p>
<p>Now, it works fine for save, update and delete..</p>
<p>But when I am fetching using some criteria, it's giving me "could not resolve property" exception.</p>
<p>My Beans are as follows :</p>
<h1>WBList.java</h1>
<pre><code>@Entity
public class WBList {
private WBListPK id;
private String wb;
@Id
public WBListPK getId() {
return id;
}
public void setId(WBListPK id) {
this.id = id;
}
@Column(name = "wb")
public String getWb() {
return wb;
}
public void setWb(String wb) {
this.wb = wb;
}
}
</code></pre>
<h1>WBListPK.java</h1>
<pre><code>@Embeddable
public class WBListPK implements Serializable {
private int rid;
private int sid;
public WBListPK() {
}
public WBListPK(Integer rid, Integer sid) {
this.rid = rid;
this.sid = sid;
}
public int getRid() {
return rid;
}
public void setRid(int rid) {
this.rid = rid;
}
public int getSid() {
return sid;
}
public void setSid(int sid) {
this.sid = sid;
}
}
</code></pre>
<p>FindByAll Method of My DAO is as follows :</p>
<pre><code>public List<WBList> findByAll(final WBListPK wbListPK, final String wb) {
List results = null;
results = this.hibernateTemplate.executeFind(new HibernateCallback() {
public Object doInHibernate(Session session)
throws HibernateException, SQLException {
Criteria criteria = session.createCriteria(WBList.class);
if (wb != null) {
criteria.add(Expression.like("wb", wb));
}
if(wbListPK.getRid()!=0){
criteria.add(Expression.eq("rid", wbListPK.getRid()));
}
if(wbListPK.getSid()!=0){
criteria.add(Expression.eq("sid", wbListPK.getSid()));
}
return criteria.list();
}
});
return results;
}
</code></pre>
<p>I am calling this findByAll method from my controller, the code is :</p>
<pre><code> WBListPK wbListPK = new WBListPK();
WBList wbList = new WBList();
wbListPK.setRid(10);
wbListPK.setSid(20);
List<WBList> wbListList = this.wbListSecurityProcessor.findByAll(wbListPK, "b");
System.out.println("wbListList = "+wbListList);
</code></pre>
<p>When I am executing above code, it's giving me following exception (with stacktrace):</p>
<pre><code> org.springframework.orm.hibernate3.HibernateQueryException: could not resolve property: rid of: com.sufalam.mailserver.bean.WBList; nested exception is org.hibernate.QueryException: could not resolve property: rid of: com.sufalam.mailserver.bean.WBList
org.springframework.orm.hibernate3.SessionFactoryUtils.convertHibernateAccessException(SessionFactoryUtils.java:655)
org.springframework.orm.hibernate3.HibernateAccessor.convertHibernateAccessException(HibernateAccessor.java:412)
org.springframework.orm.hibernate3.HibernateTemplate.doExecute(HibernateTemplate.java:411)
org.springframework.orm.hibernate3.HibernateTemplate.executeFind(HibernateTemplate.java:343)
com.sufalam.mailserver.dao.WBListDao.findByAll(WBListDao.java:42)
com.sufalam.mailserver.business.WBListProcessor.findByAll(WBListProcessor.java:33)
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
java.lang.reflect.Method.invoke(Method.java:597)
org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:196)
$Proxy113.findByAll(Unknown Source)
com.sufalam.mailserver.business.security.WBListSecurityProcessor.findByAll(WBListSecurityProcessor.java:28)
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
java.lang.reflect.Method.invoke(Method.java:597)
org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:196)
$Proxy120.findByAll(Unknown Source)
com.sufalam.mailserver.presentation.web.WBListManageController.handleRequest(WBListManageController.java:65)
org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter.handle(SimpleControllerHandlerAdapter.java:48)
org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:781)
org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:726)
org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:636)
org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:545)
javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
org.netbeans.modules.web.monitor.server.MonitorFilter.doFilter(MonitorFilter.java:390)
root cause
org.hibernate.QueryException: could not resolve property: rid of: com.sufalam.mailserver.bean.WBList
org.hibernate.persister.entity.AbstractPropertyMapping.propertyException(AbstractPropertyMapping.java:44)
org.hibernate.persister.entity.AbstractPropertyMapping.toType(AbstractPropertyMapping.java:38)
org.hibernate.persister.entity.AbstractEntityPersister.getSubclassPropertyTableNumber(AbstractEntityPersister.java:1379)
org.hibernate.persister.entity.BasicEntityPropertyMapping.toColumns(BasicEntityPropertyMapping.java:31)
org.hibernate.persister.entity.AbstractEntityPersister.toColumns(AbstractEntityPersister.java:1354)
org.hibernate.loader.criteria.CriteriaQueryTranslator.getColumns(CriteriaQueryTranslator.java:434)
org.hibernate.loader.criteria.CriteriaQueryTranslator.getColumnsUsingProjection(CriteriaQueryTranslator.java:394)
org.hibernate.criterion.SimpleExpression.toSqlString(SimpleExpression.java:45)
org.hibernate.loader.criteria.CriteriaQueryTranslator.getWhereCondition(CriteriaQueryTranslator.java:334)
org.hibernate.loader.criteria.CriteriaJoinWalker.<init>(CriteriaJoinWalker.java:90)
org.hibernate.loader.criteria.CriteriaJoinWalker.<init>(CriteriaJoinWalker.java:59)
org.hibernate.loader.criteria.CriteriaLoader.<init>(CriteriaLoader.java:69)
org.hibernate.impl.SessionImpl.list(SessionImpl.java:1554)
org.hibernate.impl.CriteriaImpl.list(CriteriaImpl.java:283)
com.sufalam.mailserver.dao.WBListDao$1.doInHibernate(WBListDao.java:59)
org.springframework.orm.hibernate3.HibernateTemplate.doExecute(HibernateTemplate.java:406)
org.springframework.orm.hibernate3.HibernateTemplate.executeFind(HibernateTemplate.java:343)
com.sufalam.mailserver.dao.WBListDao.findByAll(WBListDao.java:42)
com.sufalam.mailserver.business.WBListProcessor.findByAll(WBListProcessor.java:33)
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
java.lang.reflect.Method.invoke(Method.java:597)
org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:196)
$Proxy113.findByAll(Unknown Source)
com.sufalam.mailserver.business.security.WBListSecurityProcessor.findByAll(WBListSecurityProcessor.java:28)
sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
java.lang.reflect.Method.invoke(Method.java:597)
org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:196)
$Proxy120.findByAll(Unknown Source)
com.sufalam.mailserver.presentation.web.WBListManageController.handleRequest(WBListManageController.java:65)
org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapter.handle(SimpleControllerHandlerAdapter.java:48)
org.springframework.web.servlet.DispatcherServlet.doDispatch(DispatcherServlet.java:781)
org.springframework.web.servlet.DispatcherServlet.doService(DispatcherServlet.java:726)
org.springframework.web.servlet.FrameworkServlet.processRequest(FrameworkServlet.java:636)
org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkServlet.java:545)
javax.servlet.http.HttpServlet.service(HttpServlet.java:617)
javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
org.netbeans.modules.web.monitor.server.MonitorFilter.doFilter(MonitorFilter.java:390)
</code></pre>
<p>Please help me if anybody have any solutions..</p>
<p>Thanks in advance..</p>
http://stackoverflow.com/questions/1891320/in-spring-how-do-i-use-a-classpathxmlapplicationcontext-to-get-an-entitymanager2In Spring, how do I use a ClassPathXmlApplicationContext to get an EntityManager?HappyEngineer2009-12-11T22:37:30Z2009-12-11T22:46:33Z
<p>With Spring I can autowire a bean with the following property:</p>
<pre><code>@PersistenceContext(unitName="foo") private EntityManager em;
</code></pre>
<p>Using the following I can manually autowire the bean "someBean":</p>
<pre><code>ClassPathXmlApplicationContext ctx =
new ClassPathXmlApplicationContext("META-INF/applicationContext.xml");
AutowireCapableBeanFactory fac = ctx.getAutowireCapableBeanFactory();
fac.autowireBean(someBean);
</code></pre>
<p>However, I can't figure out how to directly get a particular EntityManager. The use case is that I want to write a test that will get all EntityManager objects and execute simple queries in them to ensure that they are set up properly. To do this I need to be able to get all EntityManager objects from the application context. How can I do that?</p>
<p>The following does not work. It returns an empty map.</p>
<pre><code>Map<String,EntityManager> ems = ctx.getBeansOfType(EntityManager.class);
</code></pre>
http://stackoverflow.com/questions/1890818/spring-jms-messagelistener-using-multiple-concurrent-consumers-yet-only-one-messa0Spring JMS MessageListener using multiple concurrent consumers yet only one message processed at a timeJumipo2009-12-11T20:56:29Z2009-12-11T22:25:10Z
<p>I have a DefaultMessageListenerContainer defined like this:</p>
<pre><code><bean id="messageListenerContainer"
class="org.springframework.jms.listener.DefaultMessageListenerContainer">
<property name="connectionFactory" ref="queueAuthenticatingConnectionFactory" />
<property name="destination" ref="requestQueue" />
<property name="messageListener" ref="requestMessageListener" />
<property name="autoStartup" value="true" />
<property name="concurrentConsumers" value="10" />
</bean>
</code></pre>
<p>As you can see, I have 10 concurrentConsumers being initialized, and there are 10 listeners on the queue. The 'requestMessageListener' is defined:</p>
<pre><code><bean id="requestMessageListener" class="RequestMessageListener"></bean>
</code></pre>
<p>And the class itself looks like:</p>
<pre><code>public class RequestMessageListener implements MessageListener
{
public void onMessage(Message message)
{
//blah blah
}
}
</code></pre>
<p>Fairly standard. My issue is it appears that, while messages are being pulled off the queue 10 at a time, they are only being processed one at a time. So when I get a transaction that takes 20+ minutes it holds up the rest of the queue and transactions that usually only take 2 minutes.</p>
<p>Why are the messages being executed one at a time and how do I fix it so the 10 consumers kick off 10 message processors?</p>
<p>EDIT:</p>
<p>After further investigation, it appears as if some of the transactions are being executed concurrently, but when a request is picked up that takes 30 minutes there are always at least a couple other messages that get stuck behind that one. They come through once the long running one has completed. If I have 10 listeners why would messages get stuck behind long running transactions if there are 7 other listeners still available and not doing anything?</p>
http://stackoverflow.com/questions/288219/how-do-i-redirect-to-an-ftp-url-with-spring-webflow0How do I redirect to an ftp:// url with Spring Webflow?bwinton2008-11-13T20:44:34Z2009-12-11T21:06:40Z
<p>I'm trying to use Spring WebFlow to redirect to a computed url to an ftp server, but in the ExternalRedirect code are the following lines:</p>
<pre><code>} else if (location.startsWith("http://") || location.startsWith("https://")) {
sendRedirect(location, request, response);
} else {
sendServletRelativeRedirect(location, request, response);
}
</code></pre>
<p>Is there any way to get Spring WebFlow to redirect to, say, ftp://example.com/?</p>
http://stackoverflow.com/questions/1880536/how-to-bind-customdateeditor-to-all-date-fields-in-springframework0How to bind CustomDateEditor to all Date fields in Springframework?Rakesh Juyal2009-12-10T12:05:37Z2009-12-11T17:21:25Z
<p>I am having a dataBind which is having few attributes alongwith a list of bean and one of the attribute of the bean is of type Date. Now i would like to add the customDateEditor to this date field.<br>
My Databind goes like this:</p>
<pre><code> public class myDataBind{
/*
some attributes here
*/
List myList = new ArrayList(); // List of myBean
/*
accessor and mutators here
*/
}
</code></pre>
<p><hr></p>
<pre><code>public class myBean{
/*
some attributes here
*/
private Date fromDate = null;
private Date toDate = null;
/*
accessor and mutators here
*/
}
</code></pre>
<p><hr></p>
<p>and in my Controller i am having </p>
<pre><code>protected void initBinder(HttpServletRequest request, ServletRequestDataBinder binder) throws Exception {
super.initBinder(request, binder);
binder.registerCustomEditor(Date.class, new CustomDateEditor(new SimpleDateFormat("yyyy-MM-dd"){{ setLenient(false);}},false)); // Date.class is java.sql.Date.class
}
</code></pre>
<p><hr></p>
<p>But still i am getting the error
<em>Field error in object 'command' on field 'myList[0].fromDate': rejected value [2009-05-27]; codes [typeMismatch.command.myList[0].fromDate,typeMismatch.command.myList.fromDate,typeMismatch.myList[0].fromDate,typeMismatch.myList.fromDate,typeMismatch.fromDate,typeMismatch.java.sql.Date,typeMismatch]; arguments [org.springframework.context.support.DefaultMessageSourceResolvable: codes [command.myList[0].fromDate,myList[0].fromDate]; arguments []; default message [myList[0].fromDate]]; default message [Failed to convert property value of type [java.lang.String] to required type [java.sql.Date] for property 'myList[0].fromDate'; nested exception is java.lang.IllegalArgumentException: <strong>Cannot convert value of type [java.lang.String] to required type [java.sql.Date] for property 'fromDate': no matching editors or conversion strategy found]</em></strong></p>
<p>Please let me know, which step i am missing.</p>