active questions tagged spring-framework - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T03:35:26Zhttp://stackoverflow.com/feeds/tag/spring-frameworkhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://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-10T20:25:59Z
<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>
http://stackoverflow.com/questions/1882154/model-generation-for-manually-entered-page-in-spring-framework0Model generation for manually entered page in Spring frameworkoo_olo_oo2009-12-10T16:18:52Z2009-12-10T17:13:57Z
<p>I have to extend some Spring web application, but I'm not very familiar with the framework (however, I have some experience with few other frameworks). I can see that there is "ModelAndView" concept used by the framework. Controller returns both: a model and a view from onSubmit() method. But what to do if a model have to be generated for a page entered manually (user enters the page address to the browser address bar, instead of submitting a form). In such a case there is no onSubmit() call, so a model isn't prepared. </p>
<p>I thought of (ab)using formBackingObject() method of BaseFormController class, which prepares "command" object. But I don't know how to refer the object in the jsp code. Any hints would be appreciated. </p>
http://stackoverflow.com/questions/1872202/cxf-jax-rs-is-causing-busexception0CXF JAX-RS is causing BusExceptionRasmus2009-12-09T07:30:08Z2009-12-09T21:15:12Z
<p>After adding a RESTFul service using Apache CXF to my Spring (and Wicket) project I get the following exception:</p>
<p><em>org.apache.cxf.BusException: No binding factory for namespace <a href="http://apache.org/cxf/binding/jaxrs" rel="nofollow">http://apache.org/cxf/binding/jaxrs</a> registered.</em></p>
<p>I have included the row below in my Spring configuration and thought this would actually solve my problem. But it did not.</p>
<p><em>import resource="classpath:META-INF/cxf/cxf-extension-jaxrs-binding.xml"</em></p>
<p>Any feedback regarding how to solve this problem or ideas in what areas to look for a solution would be greately appreciated.</p>
<p>I am using Spring 3.0.0.RC2 and Apache CXF 2.2.5.
(Maven dependencies to org.springframework.core, org.springframework.test, org.springframework.orm, org.springframework.web and cxf-bundle.)</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1876186/setting-values-from-a-class-to-spring-context-file0Setting values from a class to Spring context fileOptimize Prime2009-12-09T19:21:09Z2009-12-09T19:53:50Z
<p>We usually define some beans with their properties in the Spring context file and write some setter methods in the class.</p>
<p>Let's say I wanna do the opposite. I have a bean in the context file and want to declare some properties from the class..or initialize values of declared properties in the context from the class. How do I do that?</p>
http://stackoverflow.com/questions/1874273/spring-add-xml-context-on-the-fly2spring: add xml context on-the-fly?IttayD2009-12-09T14:29:29Z2009-12-09T15:21:02Z
<p>I'd like to be able to load spring context.xml files on-the-fly, so that they are wired with previously loaded contexts (meaning, in contextA.xml I can ref a bean defined in contextB.xml which was already loaded). I would like for existing beans to not be destroyed and then created whenever a context is added. </p>
http://stackoverflow.com/questions/1845669/is-there-a-way-to-map-an-url-to-another-url-in-spring6Is there a way to map an URL to another URL in Spring?dpb2009-12-04T08:41:24Z2009-12-09T10:47:59Z
<p>In Struts 1 you could have, in struts-config.xml, a declaration like:</p>
<pre><code><action path="/first" forward="/second.do">
</code></pre>
<p>Is something similar also possible in Spring, or can I map an URL only to a controller? I am using Spring 2.5.x.</p>
<p>I could off course map the URL to the same controller as:</p>
<pre><code><bean id="urlMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
<property name="mappings">
<props>
<prop key="/first.do">theController</prop>
<prop key="/second.do">theController</prop>
...
</code></pre>
<p>Or maybe use the <code>org.springframework.web.servlet.mvc.ParameterizableViewController</code> and have something like:</p>
<pre><code><bean id="theDummyController" class="org.springframework.web.servlet.mvc.ParameterizableViewController">
<property name="viewName" value="forward:second.do"/>
</bean>
<bean id="urlMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
<property name="mappings">
<props>
<prop key="/first.do">theDummyController</prop>
<prop key="/second.do">theController</prop>
...
</code></pre>
<p>I know I could be complicating things and I should just stick to the simple stuff that gets the job done, but I would like this to be more like a statement of the kind: "this URL is in fact a shortcut (or alias) to this other URL" (don't ask why... long story...) which is somehow visible with the <code>ParameterizableViewController</code> but not completely.</p>
<p>So, is this possible?</p>
<p>Thank you!</p>
http://stackoverflow.com/questions/1846919/how-negligible-is-parameterizedbeanpropertyrowmappers-performance-hit2How negligible is ParameterizedBeanPropertyRowMapper's performance hit?HappyCoder2009-12-04T13:24:26Z2009-12-06T00:03:45Z
<p>The javadoc says:</p>
<blockquote>
<p>Please note that this class is designed to provide convenience rather than high performance. For best performance consider using a custom RowMapper.</p>
</blockquote>
<p>How slow is it in the real world?</p>
http://stackoverflow.com/questions/544550/spring-embedded-ldap-server-in-unit-tests1Spring embedded ldap server in unit testsKent Lai2009-02-13T02:44:48Z2009-12-05T05:36:44Z
<p>I am currently trying to use an embedded ldap server for unit tests.</p>
<p>In Spring Security, you can quickly define an embedded ldap server for testing with the tag with some sample data loaded from the specified ldif.</p>
<p>I will be using Spring Ldap to perform ldap operations, and thinking of testing the usual CRUD features of my User service object.</p>
<p>Is there, however, a way to ensure that the entries in the embedded server to be in the same consistent state (sort of like a delete all and reload the ldif entries) for each test I am running?</p>
<p>I thought of the following:
1) Indicate that the method dirties the context, and force a recreation of the embedded ldap server, which sounds painful as it would have to restart the server for every method
2) Create the test entries in a test organization, such that I can unbind them and simply load in the ldif file again there.</p>
<p>I prefer 2, but it seems like the Spring LDAP has no good helpers to load and send across the content of a ldif file.</p>
<p>Any suggestions on how you perform ldap testing with an embedded ldap server of spring, or of the two possible solutions I mention?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1841857/can-i-use-an-environment-variable-based-location-for-spring-filesystemresource2Can I use an Environment variable based location for Spring FileSystemResource?predhme2009-12-03T18:22:00Z2009-12-04T21:03:38Z
<p>I have a requirement to have all our properties files be stored in a directory. The location of this directory should be stored in a system environment variable. In my application context I will need to access this environment variable to create the FileSystemResource bean. Here is an example of what I would normally have: </p>
<pre><code><bean id="properties" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="locations">
<bean class="org.springframework.core.io.FileSystemResource">
<constructor-arg>
<value>myprops.properties</value>
</constructor-arg>
</bean>
</property>
</bean>
</code></pre>
<p>Instead I will need to have it be something like </p>
<pre><code><value>${prop_file_location}/myprops.properties</value>
</code></pre>
<p>Where prop file location is an environment variable. Does anyone know an easy way of doing this? </p>
<p>I am using spring 2.5.6 and java 1.6</p>
http://stackoverflow.com/questions/1844324/customizing-spring-concurrent-session-control-configuration0Customizing Spring concurrent-session-control configurationsapphiresky2009-12-04T01:30:59Z2009-12-04T01:30:59Z
<p>How do I detect and inform the user that they already have an active session and provide them an option to create a new session or close the current active one? Please advise. Thanks much.</p>
http://stackoverflow.com/questions/1373407/how-to-display-custom-error-message-in-jsp-for-spring-security-auth-exception2how to display custom error message in jsp for spring security auth exceptionManiganda Prakash2009-09-03T13:25:32Z2009-12-04T00:42:24Z
<p>I want to display custom error message in jsp for spring security authentication exceptions.</p>
<p>For wrong username or password,</p>
<pre><code>spring displays : Bad credentials
what I need : Username/Password entered is incorrect.
</code></pre>
<p>For user is disabled,</p>
<pre><code>spring displays : User is disabled
what I need : Your account is diabled, please contact administrator.
</code></pre>
<p>Do I need to override AuthenticationProcessingFilter just for this ? or else can I do something in jsp itself to find the authentication exception key and display different message</p>
http://stackoverflow.com/questions/1636572/spring-security-2-0-5-custom-login-form-cannot-see-errors-in-language-other-tha0Spring security 2.0.5. custom login form. Cannot see errors in language other than English.PUK2009-10-28T11:05:16Z2009-12-03T13:16:58Z
<p>Hello,</p>
<p>I've got my Spring Security custom login form working. It displays errors if the user has input bad credentials, or is expired, etc.</p>
<p>Looking inside spring-security-core-2.0.5.RELEASE.jar, I notice the following files in the org.springframework.security package:</p>
<p>messages.properties
messages_cs_CZ.properties
messages_de.properties
messages_fr.properties
...etc...</p>
<p>and notice that they have the localised versions of the strings.</p>
<p>Setting my browser's preferred language to French <strong>doesn't make the French version of the string appear</strong>. What am I missing?</p>
<p>PUK</p>
http://stackoverflow.com/questions/1496205/how-to-log-the-time-taken-by-methods-in-springframework5How to log the time taken by methods in Springframework?Rakesh Juyal2009-09-30T05:08:41Z2009-12-02T04:32:35Z
<p>Is it possible in springframework to log the time taken by methods [ selective | all ] automatically. By automatically i mean, i don't want to go to each method and write the log.debug ( "...." ); stuff. </p>
http://stackoverflow.com/questions/1327588/spring-methodinvokingtimer-dont-show-the-property0Spring methodInvokingTimer, dont show the propertyzakaria2009-08-25T11:14:01Z2009-12-01T22:00:02Z
<p>Hi,</p>
<p>I have imported the package org.spring.schedule.timer2.5.6A. using eclipse and created the following beans. but my problem is i, dont see / cant set any property values for the bean methodInvokingTASK (last one), where I should have.</p>
<p>property - targetObject</p>
<p>property - targetMethod</p>
<p>I dont know what is wrong, am I missing any import or doing anything silly!!!</p>
<pre><code><bean id = "scheduledTASK" class ="org.springframework.scheduling.timer.ScheduledTimerTask">
<property name="delay" value="1000" />
<property name="period" value="6000"/>
<property name="timerTask" ref="methodInvokingTASK" />
</bean>
<bean id="timerFactory" class="org.springframework.scheduling.timer.TimerFactoryBean">
<property name="scheduledTimerTasks">
<list>
<ref local="scheduledTASK"/>
</list>
</property>
</bean>
<bean id="methodInvokingTASK" class="org.springframework.scheduling.timer.MethodInvokingTimerTaskFactoryBean">
</bean>
</code></pre>
http://stackoverflow.com/questions/1820298/distributed-application-environment-and-web-services-what-how-to-learn0Distributed Application Environment and Web Services - What/How to learn?Dan2009-11-30T14:56:12Z2009-11-30T15:53:30Z
<p>I want to learn how to create distributed application environments and web services using spring, aspectj, hibernate, etc. rather than EJBs. </p>
<ol>
<li><p>Can anyone recommend a book or set of books that can help me (a single all-in-one book would be preferable)?</p></li>
<li><p>Also, any advice regarding learning/creating distributed app environments and web services is appreciated.</p></li>
</ol>
http://stackoverflow.com/questions/1804042/spring-batch-java-io-ioexception-stream-closed-exception-when-combining-multire0Spring Batch: java.io.IOException: Stream closed exception when combining MultiResourceItemWriter and FlatFileItemWriterMatthieuF2009-11-26T14:39:55Z2009-11-30T12:31:01Z
<p>I have a Spring Batch process which takes a set of rows in the database and creates a number of flat files from those rows, 10 rows per file. To do this, I've created a Spring Batch process, similar to this:</p>
<pre><code><batch:job id="springTest" job-repository="jobRepository" restartable="true">
<batch:step id="test">
<batch:tasklet>
<batch:chunk reader="itemReader" writer="multipleItemWriter" commit-interval="2" />
</batch:tasklet>
</batch:step>
</batch:job>
<bean id="itemReader" class="org.springframework.batch.item.file.FlatFileItemReader">
<property name="resource" value="file:/temp/temp-input.txt" />
<property name="lineMapper">
<bean class="org.springframework.batch.item.file.mapping.PassThroughLineMapper" />
</property>
</bean>
<bean id="multipleItemWriter" class="org.springframework.batch.item.file.MultiResourceItemWriter">
<property name="resource" value="file:/temp/temp-out" />
<property name="itemCountLimitPerResource" value="2" />
<property name="delegate">
<bean id="itemWriter" class="org.springframework.batch.item.file.FlatFileItemWriter">
<property name="lineAggregator">
<bean class="org.springframework.batch.item.file.transform.PassThroughLineAggregator" />
</property>
<property name="encoding" value="utf-8" />
<property name="headerCallback" ref="headerFooter" />
<property name="footerCallback" ref="headerFooter" />
</bean>
</property>
</bean>
<bean id="headerFooter" class="uk.co.farwell.spring.HeaderFooterCallback" />
</code></pre>
<p>The above example reads from a flat file and outputs to a flat file (to show the problem). Note the commit-interval=2 in the chunk, and the itemCountLimitPerResource=2 in the MultiResourceItemWriter.</p>
<p>The HeaderFooterCallback does the following:</p>
<pre><code>public void writeHeader(Writer writer) throws IOException {
writer.write("file header\n");
}
public void writeFooter(Writer writer) throws IOException {
writer.write("file footer\n");
}
</code></pre>
<p>I need to be able to specify exactly the number of lines which appear in the file.</p>
<p>For the following input file:</p>
<pre><code>foo1
foo2
foo3
</code></pre>
<p>I would expect two files on output,</p>
<p><hr></p>
<p>out.1:</p>
<pre><code>file header
foo1
foo2
file footer
</code></pre>
<p>out.2:</p>
<pre><code>file header
foo3
file footer
</code></pre>
<p>When I run with commit-interval=2, I get an exception:</p>
<pre><code>2009-11-26 15:32:46,734 ERROR .support.TransactionSynchronizationUtils - TransactionSynchronization.afterCompletion threw exception
org.springframework.batch.support.transaction.FlushFailedException: Could not write to output buffer
at org.springframework.batch.support.transaction.TransactionAwareBufferedWriter$1.afterCompletion(TransactionAwareBufferedWriter.java:71)
at org.springframework.transaction.support.TransactionSynchronizationUtils.invokeAfterCompletion(TransactionSynchronizationUtils.java:157)
at org.springframework.transaction.support.AbstractPlatformTransactionManager.invokeAfterCompletion(AbstractPlatformTransactionManager.java:974)
.
.
.
Caused by: java.io.IOException: Stream closed
at sun.nio.cs.StreamEncoder.ensureOpen(Unknown Source)
at sun.nio.cs.StreamEncoder.write(Unknown Source)
at sun.nio.cs.StreamEncoder.write(Unknown Source)
at java.io.Writer.write(Unknown Source)
at org.springframework.batch.support.transaction.TransactionAwareBufferedWriter$1.afterCompletion(TransactionAwareBufferedWriter.java:67).
</code></pre>
<p>I think this is a bug. Wierdly, the files are as follows:</p>
<p>out.1:</p>
<pre><code>file header
foo1
foo2
</code></pre>
<p>out.2:</p>
<pre><code>file footer
</code></pre>
<p>If I have two lines in the input file, everything works correctly, but more than two does not work. If I change the commit-interval to 200, then I get three lines in one file, which is not the behaviour wanted.</p>
<p>If someone could tell me if I'm doing something wrong, or if not how to get around the problem, I'd be very grateful.</p>
http://stackoverflow.com/questions/534199/how-to-collect-spring-properties-from-multiple-files-for-use-on-a-single-bean0How to collect spring properties from multiple files for use on a single beanSam Hoice2009-02-10T21:02:39Z2009-11-27T13:13:52Z
<p>I haven't gotten my head wrapped around Spring yet, so correct me if this question doesn't make sense...</p>
<p>I have a PropertyPlaceholderConfigurer</p>
<pre><code><bean id="rdbmPropertiesPlacholder" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer" lazy-init="false">
<property name="location" value="classpath:/properties/rdbm.properties" />
</bean>
</code></pre>
<p>And I have a bean being injected I guess?</p>
<pre><code><bean id="PortalDb" class="org.apache.commons.dbcp.BasicDataSource">
<property name="driverClassName" value="${hibernate.connection.driver_class}" />
<property name="url" value="${hibernate.connection.url}" />
<property name="username" value="${hibernate.connection.username}" />
<property name="password" value="${hibernate.connection.password}" />
...
</code></pre>
<p>What I want is a second placeholder pointing to a different properties file with the username/password so that I can split up the properties into two different files. Then the database connection information can be separate from the db username/password, and I can source control one and not the other.</p>
<p>I've tried basically copying the rdbmPropertiesPlaceholder with a different id and file and trying to access the properties, but it doesn't work.</p>
<p>This code is from the uPortal open source web portal project.</p>
http://stackoverflow.com/questions/1392889/using-jdbc-connection-from-presentation-tier-in-2-tier-and-3-tier-applications0using JDBC Connection from presentation tier in 2-tier and 3-tier applicationsAttilah2009-09-08T09:13:47Z2009-11-27T03:00:03Z
<p>I am writing a module that will be used in different applications (2-tiers and 3-tiers).
I'll need to connect to a DB. so, I made the module requires a java.sql.Connection object as a parameter when used with a 2-tier application. there's no problem there.</p>
<p>the problem i'm facing is that in case of a 3-tier application, the module will be used from the Presentation tier and as such, I don't want to give the module a Connection object for DB access. </p>
<p>What do you suggest I use to solve this problem ?</p>
http://stackoverflow.com/questions/1769909/spring-share-web-application-context-between-different-webapps2Spring - share web application context between different webappsMiguel Ping2009-11-20T11:33:21Z2009-11-23T19:54:51Z
<p>Hi,
I have a multi-module maven project. One of the modules is a util layer that has some spring beans. I want to share <strong>the same</strong> spring beans within the other modules.</p>
<p>The other modules are deployed as <strong>non-related</strong> web-applications, so ideally my util beans would be singletons and I would only have one ref to these singletons throughout all the web apps.</p>
<p>I have found some links for sharing spring web application contexts, but it seems that they work within the same .ear, but in my case I have different web apps.</p>
<p>Is there a way of accomplishing this?</p>
http://stackoverflow.com/questions/1756449/spring-advice-submitting-a-form0Spring Advice - submitting a formCaroline2009-11-18T14:38:40Z2009-11-20T18:50:15Z
<p>Hi,</p>
<p>I am having serious problems with code I have written with Spring so I have decided to start from scratch and ask for advice. Here are my requirements:</p>
<ol>
<li>When the page first loads I need a list of objects retrieved from the DB that I can access on the JSP.</li>
<li>I use this list to populate a
drop down. </li>
<li>When the user selects
an object from the drop down the
form below is populated by the
appropriate data (all of this
data is available as it is
retrieved when the page is first<br>
loaded) </li>
<li>The user can modify this
data and submit the form. I need
to save this data to the DB</li>
<li>The
page should be reloaded and needs
to retrieve the list of objects
from the DB again as they have
changed and make this list<br>
available to the JSP.</li>
</ol>
<p>I have been using SimpleFormController and the referenceData() and onSubmitAction() methods but I'm not sure if this is the best solution. I think my problem is that after onSubmitAction is finished the list of objects is not available in the JSP as referenceData() is not called after onSubmitAction() finishes.</p>
<p>Apologies if this is a silly request. I have been googling and looking for tutorials for 2 days and I cannot find an example that does what I need it to do.</p>
<p>So my question is which methods should I be implementing to meet these requirements?</p>
http://stackoverflow.com/questions/1768710/multi-staged-form-using-spring0multi-staged form using springEmil Sulistya2009-11-20T06:32:37Z2009-11-20T06:38:32Z
<p>hi all, please forgive me for this stupid questions. I just started developing web application using spring yesterday.</p>
<p>The project that i worked on, have a multi staged form, that require users to complete them before the data can be persisted on the database. Is there any way to keep those input in a temporary storage eg: session scoped bean, before the user finish all the stages? or any suggestion what is the best way to implement this using spring mvc?</p>
<p>thanks a lot, please pardon my grammar </p>
http://stackoverflow.com/questions/1750195/exception-thrown-after-processing-onsubmitaction0Exception thrown after processing onSubmitActionCaroline2009-11-17T16:48:42Z2009-11-18T11:42:45Z
<p>Hi,</p>
<p>I am very new to Spring and I have a simpleFormController with 2 methods. referenceData() with is called when the page loads and onSubmitAction() which is called on the submit of a form. I am getting a nullPointerExcpetion after all my onSubmitAction() code has completed and I suspect it has something to do with where the flow of control is going after the method is finished. I want referenceData() to be called after on submitAction() so that the page behaves the same way that it does when it loads first.</p>
<p>I have another requirement that may change what I think above. I want to pass back a success or error message based on the results of the onSubmitAction(). What is the best way to do this. Here are the relevant parts of my code:</p>
<pre><code>protected Map referenceData(PortletRequest arg0, Object arg1, Errors arg2) throws Exception
{
Map<String, Object> model = new HashMap<String, Object>();
List<Communication> allCommunications = dao.getAllCommunications();
model.put("allCommunications", allCommunications);
model.put("error", ""); //not sure how to get this data
model.put("success", ""); //not sure how to get this data
return model;
}
protected void onSubmitAction(ActionRequest argRequest,
ActionResponse argResponse, Object command, BindException errors)
throws Exception
{
Communication form = (Communication) command;
dao.updateCommunication(form);
//I want to set a success message here that can be read in the JSP
</code></pre>
<p>
</p>
<pre><code><bean id="communicationsValidator" class="com.admin.portlet.communication.CommunicationsValidator"/>
<bean id="communicationsController" class="com.admin.portlet.communication.CommunicationsAdminController">
<property name="commandName" value="communications"/>
<property name="commandClass" value="com.admin.portlet.communication.vo.Communication"/>
<property name="formView" value="communications/communicationsAdmin"/>
<property name="successView" value="communications/communicationsAdmin"/>
<property name="validator"><ref bean="communicationsValidator"/></property>
<property name="dao"><ref bean="communicationsDao"/></property>
</bean>
<bean id="portletModeHandlerMapping" class="org.springframework.web.portlet.handler.PortletModeHandlerMapping">
<property name="order" value="1"/>
<property name="portletModeMap">
<map>
<entry key="view"><ref bean="communicationsController"/></entry>
</map>
</property>
</bean>
</code></pre>
<p>Thanks in advance for any advice....</p>
<p>Stack trace added</p>
<pre><code>18/11/09 10:08:38:454 GMT] 0000002a ServletWrappe E SRVE0068E: Uncaught exception thrown in one of the service methods of the servlet: /WEB-INF/jsp/communications/communicationsAdmin.jsp. Exception thrown : java.lang.NullPointerException
at com.ibm._jsp._communicationsAdmin._jspService(_communicationsAdmin.java:212)
at com.ibm.ws.jsp.runtime.HttpJspBase.service(HttpJspBase.java:85)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:989)
at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:501)
at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:464)
at com.ibm.wsspi.webcontainer.servlet.GenericServletWrapper.handleRequest(GenericServletWrapper.java:122)
at com.ibm.ws.jsp.webcontainerext.AbstractJSPExtensionServletWrapper.handleRequest(AbstractJSPExtensionServletWrapper.java:205)
at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.include(WebAppRequestDispatcher.java:639)
at org.springframework.web.servlet.view.InternalResourceView.renderMergedOutputModel(InternalResourceView.java:227)
at org.springframework.web.servlet.view.AbstractView.render(AbstractView.java:257)
at org.springframework.web.servlet.ViewRendererServlet.renderView(ViewRendererServlet.java:111)
at org.springframework.web.servlet.ViewRendererServlet.processRequest(ViewRendererServlet.java:84)
at org.springframework.web.servlet.ViewRendererServlet.doGet(ViewRendererServlet.java:65)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:989)
at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:501)
at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:464)
at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.include(WebAppRequestDispatcher.java:639)
at org.apache.jetspeed.dispatcher.JetspeedRequestDispatcher.include(JetspeedRequestDispatcher.java:73)
at org.springframework.web.portlet.DispatcherPortlet.doRender(DispatcherPortlet.java:1140)
at org.springframework.web.portlet.DispatcherPortlet.render(DispatcherPortlet.java:1094)
at org.springframework.web.portlet.DispatcherPortlet.doRenderService(DispatcherPortlet.java:832)
at org.springframework.web.portlet.FrameworkPortlet.processRequest(FrameworkPortlet.java:483)
at org.springframework.web.portlet.FrameworkPortlet.doDispatch(FrameworkPortlet.java:453)
at javax.portlet.GenericPortlet.render(GenericPortlet.java:163)
at org.apache.jetspeed.factory.JetspeedPortletInstance.render(JetspeedPortletInstance.java:103)
at org.apache.jetspeed.container.JetspeedContainerServlet.doGet(JetspeedContainerServlet.java:277)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:989)
at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:501)
at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:464)
at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.include(WebAppRequestDispatcher.java:639)
at org.apache.jetspeed.container.invoker.ServletPortletInvoker.invoke(ServletPortletInvoker.java:273)
at org.apache.jetspeed.container.invoker.ServletPortletInvoker.render(ServletPortletInvoker.java:140)
at org.apache.pluto.PortletContainerImpl.renderPortlet(PortletContainerImpl.java:119)
at org.apache.jetspeed.container.JetspeedPortletContainerWrapper.renderPortlet(JetspeedPortletContainerWrapper.java:121)
at org.apache.jetspeed.aggregator.impl.RenderingJobImpl.execute(RenderingJobImpl.java:271)
at org.apache.jetspeed.aggregator.impl.PortletRendererImpl.renderNow(PortletRendererImpl.java:228)
at org.apache.jetspeed.aggregator.impl.PageAggregatorImpl.aggregateAndRender(PageAggregatorImpl.java:148)
at org.apache.jetspeed.aggregator.impl.PageAggregatorImpl.aggregateAndRender(PageAggregatorImpl.java:144)
at org.apache.jetspeed.aggregator.impl.PageAggregatorImpl.build(PageAggregatorImpl.java:78)
at org.apache.jetspeed.aggregator.AggregatorValve.invoke(AggregatorValve.java:46)
at org.apache.jetspeed.pipeline.JetspeedPipeline$Invocation.invokeNext(JetspeedPipeline.java:167)
at org.apache.jetspeed.aggregator.HeaderAggregatorValve.invoke(HeaderAggregatorValve.java:53)
at org.apache.jetspeed.pipeline.JetspeedPipeline$Invocation.invokeNext(JetspeedPipeline.java:167)
at org.apache.jetspeed.decoration.DecorationValve.invoke(DecorationValve.java:144)
at org.apache.jetspeed.pipeline.JetspeedPipeline$Invocation.invokeNext(JetspeedPipeline.java:167)
at org.apache.jetspeed.resource.ResourceValveImpl.invoke(ResourceValveImpl.java:130)
at org.apache.jetspeed.pipeline.JetspeedPipeline$Invocation.invokeNext(JetspeedPipeline.java:167)
at org.apache.jetspeed.pipeline.valve.impl.ActionValveImpl.invoke(ActionValveImpl.java:207)
at org.apache.jetspeed.pipeline.JetspeedPipeline$Invocation.invokeNext(JetspeedPipeline.java:167)
at org.apache.jetspeed.container.ContainerValve.invoke(ContainerValve.java:109)
at org.apache.jetspeed.pipeline.JetspeedPipeline$Invocation.invokeNext(JetspeedPipeline.java:167)
at com.fmr.fcpf.util.PageHistoryValve.invoke(PageHistoryValve.java:161)
at org.apache.jetspeed.pipeline.JetspeedPipeline$Invocation.invokeNext(JetspeedPipeline.java:167)
at org.apache.jetspeed.profiler.impl.ProfilerValveImpl.invoke(ProfilerValveImpl.java:248)
at org.apache.jetspeed.pipeline.JetspeedPipeline$Invocation.invokeNext(JetspeedPipeline.java:167)
at org.apache.jetspeed.security.impl.LoginValidationValveImpl.invoke(LoginValidationValveImpl.java:159)
at org.apache.jetspeed.pipeline.JetspeedPipeline$Invocation.invokeNext(JetspeedPipeline.java:167)
at org.apache.jetspeed.localization.impl.LocalizationValveImpl.invoke(LocalizationValveImpl.java:170)
at org.apache.jetspeed.pipeline.JetspeedPipeline$Invocation.invokeNext(JetspeedPipeline.java:167)
at org.apache.jetspeed.security.impl.AbstractSecurityValve$1.run(AbstractSecurityValve.java:138)
at java.security.AccessController.doPrivileged(AccessController.java:215)
at javax.security.auth.Subject.doAsPrivileged(Subject.java:645)
at org.apache.jetspeed.security.JSSubject.doAsPrivileged(JSSubject.java:179)
at org.apache.jetspeed.security.impl.AbstractSecurityValve.invoke(AbstractSecurityValve.java:132)
at org.apache.jetspeed.pipeline.JetspeedPipeline$Invocation.invokeNext(JetspeedPipeline.java:167)
at org.apache.jetspeed.container.url.impl.PortalURLValveImpl.invoke(PortalURLValveImpl.java:67)
at org.apache.jetspeed.pipeline.JetspeedPipeline$Invocation.invokeNext(JetspeedPipeline.java:167)
at org.apache.jetspeed.capabilities.impl.CapabilityValveImpl.invoke(CapabilityValveImpl.java:126)
at org.apache.jetspeed.pipeline.JetspeedPipeline$Invocation.invokeNext(JetspeedPipeline.java:167)
at org.apache.jetspeed.pipeline.JetspeedPipeline.invoke(JetspeedPipeline.java:146)
at org.apache.jetspeed.engine.JetspeedEngine.service(JetspeedEngine.java:222)
at org.apache.jetspeed.engine.JetspeedServlet.doGet(JetspeedServlet.java:242)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:743)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:989)
at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:930)
at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:145)
at com.fmr.fc.common.authentication.FCLoginFilter.doFilter(FCLoginFilter.java:269)
at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:190)
at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:130)
at com.fmr.fc.common.authentication.CommonPortalFilter.doFilter(CommonPortalFilter.java:194)
at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:190)
at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:130)
at com.ibm.ws.webcontainer.filter.WebAppFilterChain._doFilter(WebAppFilterChain.java:87)
at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:761)
at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:673)
at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:498)
at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:464)
at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:3252)
at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:264)
at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:811)
at com.ibm.ws.wswebcontainer.WebContainer.handleRequest(WebContainer.java:1439)
at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:112)
at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:454)
at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink.java:383)
at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpICLReadCallback.java:102)
at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:165)
at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217)
at com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFuture.java:161)
at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:136)
at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:195)
at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:743)
at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:873)
at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1469)
</code></pre>
http://stackoverflow.com/questions/1542191/problem-with-dwr-integration-in-spring0problem with DWR integration in spring?Rakesh Juyal2009-10-09T06:53:04Z2009-11-18T05:40:37Z
<p>Actually this is not, how can we integrate DWR and all that. But actually the problem is i am using </p>
<pre><code>xmlns:dwr="http://www.directwebremoting.org/schema/spring-dwr"
</code></pre>
<p>and few hours back <em>'<a href="http://www.directwebremoting.org" rel="nofollow">http://www.directwebremoting.org</a>'</em> was down, so i was unable to deploy my application, And now when the site is back i got to know that this link <em>'<a href="http://www.directwebremoting.org/schema/spring-dwr" rel="nofollow">http://www.directwebremoting.org/schema/spring-dwr</a>'</em> doesn't exist any more. </p>
<p>So what could be the possible resolution of this problem, Why do it connects to the specified site. And what should i do so that even if the site is down, or the link is not available, my application should be still deployable.</p>
http://stackoverflow.com/questions/1753073/why-is-the-springsource-com-website-built-in-drupal1why is the springsource.com website built in drupal?bucho2009-11-18T01:37:28Z2009-11-18T01:40:50Z
<p>I was trying to learn a little about JAVA frameworks like Spring. I hit view source on springsource.com and it's totally Drupal (a PHP CMS).</p>
<p>What's up with that? You would think they would build the site in their own framework, huh?</p>
http://stackoverflow.com/questions/1735889/one-to-many-jpa-annotations-wont-delete-orphans0one-to-many JPA annotations won't delete orphansblack sensei2009-11-14T22:51:08Z2009-11-15T16:15:17Z
<p>Hello good people.
I 'm trying to build a user and a contact management project.
i have a lot of classes so will limit it to what are in concern here. i have a userAccount, userProfile, and group
here is the UserAccount Mapping</p>
<pre><code>@Id @GeneratedValue
@Column(name="USER_ACCOUNT_ID")
private Long ID;
......
@Column(name="EMAIL", length=100, unique=true)
private String email;
@OneToOne(targetEntity=UserProfileImpl.class,cascade={CascadeType.ALL})
@org.hibernate.annotations.Cascade(value=org.hibernate.annotations.CascadeType.DELETE_ORPHAN)
@JoinColumn(name="USER_PROFILE_ID")
private UserProfile profile;
@OneToMany(targetEntity=GroupImpl.class, cascade={CascadeType.ALL})
// @JoinColumn(name="USER_ACCOUNT_ID")
@JoinTable(name = "USER_ACCOUNT_CONTACT_GROUP", joinColumns = @JoinColumn(name = "USER_ACCOUNT_ID"), inverseJoinColumns = @JoinColumn(name = "GROUP_ID"))
@org.hibernate.annotations.Cascade(value=org.hibernate.annotations.CascadeType.DELETE_ORPHAN)
private Set<Group> groups = new HashSet<Group>();
........
</code></pre>
<p>here is the userProfile</p>
<pre><code>@Id @GeneratedValue(strategy=GenerationType.IDENTITY)
@Column(name="USER_PROFILE_ID")
private Long ID;
.....
@OneToOne(mappedBy="profile", targetEntity=UserAccountImpl.class)
private UserAccount userAccount;
.....
</code></pre>
<p>here is the group</p>
<pre><code>@Id @GeneratedValue(strategy=GenerationType.IDENTITY)
@Column(name="GROUP_ID")
private Long ID;
.......
@Column(name="NAME", length=100, unique=true)
private String Name;
@ManyToOne(targetEntity=UserAccountImpl.class)
@JoinColumn(name="USER_ACCOUNT_ID",nullable=false)
private UserAccount userAccount;
</code></pre>
<p>so basically this is it.Everything went fine before a did a bidirectional association adding userAccount object to group.so on testing. i create userProfile, userAccount ,and group(using spring @autowired) .<br>
On the setUP (@Before) method i set few prop to userProfile and add it to useAccount along with its prop and persist it and then set the useAccount to the group.<br>
on the tearDown(@After) i delete the userACcount .<br>
on my testSave (saves the group) works fine (using the same session for all the operations) but there is no delete sql query on the console for the group but it deletes the userAccount Though.<br>
By deleting the userAccount in the teardown method i was hoping group should be deleted to.But that that's not the case.<br>
worse because of the unique constraint on name of the group the other tests are failling.I search on the net but everything i try doesn't seem to work.Who can save me :) ? i mean how am i supposed to do it? thanks for reading</p>
<p>this is an update on what i've tried based on response i've got.
i've added this to <code>group.setUserAccount(null)</code> to my <code>removeGroup</code> which is now this</p>
<pre><code>public void removeGroup(Group group) {
try{
if(this.groups.contains(group)){
group.setUserAccount(null);
this.groups.remove(group);
}
} catch(Exception ex){
ex.printStackTrace();
}
}
</code></pre>
<p>so for the test i used which has the same behavior ie deletes the userAccount but not the group</p>
<pre><code>ua1.removeGroup(g1);
uaDao.delete(ua1);
</code></pre>
<p>i guess it's not entering the if block because i should have the same behavior as this one:</p>
<pre><code> g1.setUserAccount(null);
uaDao.delete(ua1);
</code></pre>
<p>this other one throws an error </p>
<blockquote>
<p>PropertyValueException: not-null property references a null or transient value </p>
</blockquote>
<p>so i think i'll delete the group using :</p>
<pre><code>gDao.delete(g1);
uaDao.delete(ua1);
</code></pre>
<p>hoping that i might find a way to go about it.Thanks to people who have helped me out especially Pascal if you had another idea or found something wrong about my code i'll be more than glad to correct it.thanks for reading</p>
http://stackoverflow.com/questions/1728237/simpleformcontroller-help1SimpleFormController help Caroline2009-11-13T09:48:18Z2009-11-13T14:02:03Z
<p>Hi,</p>
<p>I am very new to Spring and I have been given some basic instructions to move some code into a new project that uses Spring and I am having trouble with the SimpleFormController (which I was instructed to user).</p>
<p>I have a page and when it loads it has a drop down with data populated from the DB. A list of "messages" is retrieved from the DB and passed as an attribute to the JSP and then the drop down is populated. When one of these "messages" is selected a form appears below the drop down and is populated with the appropriate data. No DB call is done as all the data is returned when the page is loaded. This is all done with jQuery. The form elements can be changed and saved to the DB when the update button is clicked.</p>
<p>At the moment the code is a portlet and the doView method contains the logic to retrieve the messages and pass them to the JSP. The processAction method saves the changes.</p>
<p>I cannot figure out which methods of the SimpleFormController. I have been told to use onSubmitAction for the update but the person who showed me what to do wasn't' sure what method I use to get the data when the page first loads, to save that data/model and to retrieve it in the JSP. I will be using the Spring command/form to save the changes a message but I will not be using it to populate the drop down and the form fields.</p>
<p>Apologies if this sounds like a stupid question. I have been looking up tutorials but I'm not finding the answers I need - possible because I am unsure what the question is. </p>
<p>Thanks in advance for any help
Caroline</p>
http://stackoverflow.com/questions/1061717/what-exactly-is-spring-for8What exactly is Spring for?Maksim2009-06-30T04:25:00Z2009-11-12T15:50:41Z
<p>I hear a lot about spring, people are saying all over the web that Spring is good framework for web development. But what exactly is it for? How can I use it for my Web-Java application any examples.</p>
http://stackoverflow.com/questions/1721630/grails-packaging-and-naming-conventions1Grails Packaging and Naming Conventions GrailsNewbie2009-11-12T11:39:29Z2009-11-12T14:37:31Z
<p>Packaging Controllers, Services,etc. i.e.
- com.company.controllers
- com.company.services</p>
<p>Is this a good practice or should be avoided by all means??</p>
<p>Another worth mentioning problem I encountered is in naming services Example</p>
<p>SomthingGatewayService.groovy can't be initialized in both these ways
- SomthingGatewayService somtinggatewayService<br>
- def somtinggatewayService
I understand that the problem is in the 2 Capital Letters 'S'omthing and 'G'ateway before the conventional 'S'ervice, so its probably because of some sort of spring DI issue </p>
<p>So how to resolve this?</p>
http://stackoverflow.com/questions/1716206/how-can-i-create-a-typed-tuple2-from-java-spring0How can I create a typed Tuple2 from Java / Spring?oxbow_lakes2009-11-11T16:08:16Z2009-11-11T16:46:59Z
<p>I want to be able to create a <code>Tuple2</code> from spring config where I explicitly declare the types of my parameters:</p>
<pre><code><bean class="scala.Tuple2">
<constructor-arg index="0" value="Europe/London" type="java.util.TimeZone" />
<constructor-arg index="1" value="America/New_York" type="java.util.TimeZone" />
</bean>
</code></pre>
<p>This does not work (I have the relevant property editors specified in my config file). At runtime I get the error:</p>
<blockquote>
<p>Caused by: org.springframework.beans.factory.UnsatisfiedDependencyException:<br>
Error creating bean with name 'scala.Tuple2#6504bc' defined in file [C:\Work\myproj\config\test\myproj.xml]: Unsatisfied dependency expressed through constructor argument with index 0 of type [java.lang.Object]:<br>
<strong>Ambiguous constructor argument types</strong> - did you specify the correct bean references as constructor arguments?</p>
</blockquote>
<p>The error goes away if I do not declare the explicit <code>type</code> - but then of course the <code>Tuple2</code> in my program is just a <code>(String, String)</code> which is not what I want.</p>
<p><hr></p>
<p><strong>EDIT for those of you who did not know this</strong>, Spring uses <code>PropertyEditor</code>s to create instances from Strings as follows:</p>
<pre><code>public class TimeZoneEditor extends java.beans.PropertyEditorSupport {
public void setAsText(String text) { setValue(TimeZone.getTimeZone(text)); }
public String getAsText() { return ((TimeZone)getValue()).getID(); }
}
</code></pre>
<p>Now I simply declare in my config:</p>
<pre><code><bean id="customEditorConfigurer"
class="org.springframework.beans.factory.config.CustomEditorConfigurer">
<property name="customEditors">
<map>
<entry key="java.util.TimeZone">
<bean class="my.cleve.rutil.TimeZoneEditor"/>
</entry>
</map>
</property>
</bean>
</code></pre>
<p>And hey presto I can do things like:</p>
<pre><code><map key-type="java.util.TimeZone" value-type="java.lang.Integer">
<entry key="Europe/London" value="4" />
</map>
</code></pre>
<p>Or alternatively Spring can figure out the generic type parameters from your setter methods. Except it doesn't seem to work in the case of my <code>Tuple2</code>!</p>
http://stackoverflow.com/questions/1710374/database-not-dropped-in-between-unit-test0Database not dropped in between unit testblack sensei2009-11-10T19:02:32Z2009-11-11T05:02:33Z
<p>Hello good people i came accross a weird behaviour in my test.I'm using <code>JPA hibernate annotation</code> with <code>spring</code>.
let say i have an Class MyObject and it's property email is marqued</p>
<pre><code>@Column(name="EMAIL", length=100, unique=true)
private String email;
</code></pre>
<p>i prepare for what i need to be in the database in the setup of this class <code>MyObjectDAOImplTest</code></p>
<pre><code>@Autowired
MyObject1 ob1;
@Autowired
MyObject1 ob2;
@Before
public void setUP(){
dao = manager.createthedao();
....
ob1.setEmail("some@email.com");
....
....
ob2.setEmail("someother@email.com");
....
dao.save(ob1);
dao.save(ob2);
}
</code></pre>
<p>so my a part from the fist test method all the reste are failling.I's about duplicates values on the email column but my hbm2ddl.auto=create and i even used the create-drop. but still. i just don't get it. i've used this in so many project without the unique of course but i expect the database to be dropped each time a test method is run.Is there anything about the unique i should be aware of ? thanks for reading.Give me your suggestion.Did i left out something or fail to do some?</p>