You can subscribe to this list here.
| 2003 |
Jan
|
Feb
(55) |
Mar
(100) |
Apr
(203) |
May
(330) |
Jun
(190) |
Jul
(302) |
Aug
(323) |
Sep
(197) |
Oct
(245) |
Nov
(490) |
Dec
(330) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2004 |
Jan
(194) |
Feb
(400) |
Mar
(416) |
Apr
(415) |
May
(359) |
Jun
(381) |
Jul
(491) |
Aug
(311) |
Sep
(291) |
Oct
(273) |
Nov
(355) |
Dec
(266) |
| 2005 |
Jan
(306) |
Feb
(303) |
Mar
(520) |
Apr
(346) |
May
(255) |
Jun
(221) |
Jul
(171) |
Aug
(247) |
Sep
(147) |
Oct
(125) |
Nov
(165) |
Dec
(65) |
| 2006 |
Jan
(90) |
Feb
(53) |
Mar
(121) |
Apr
(103) |
May
(113) |
Jun
(103) |
Jul
(104) |
Aug
(67) |
Sep
(78) |
Oct
(82) |
Nov
(78) |
Dec
(70) |
| 2007 |
Jan
(77) |
Feb
(76) |
Mar
(63) |
Apr
(30) |
May
(47) |
Jun
(41) |
Jul
(44) |
Aug
(44) |
Sep
(49) |
Oct
(33) |
Nov
(25) |
Dec
(21) |
| 2008 |
Jan
(45) |
Feb
(13) |
Mar
(15) |
Apr
(12) |
May
(9) |
Jun
(33) |
Jul
(30) |
Aug
(7) |
Sep
(20) |
Oct
(17) |
Nov
(20) |
Dec
(10) |
| 2009 |
Jan
(8) |
Feb
(5) |
Mar
(12) |
Apr
(17) |
May
(19) |
Jun
(97) |
Jul
(77) |
Aug
(33) |
Sep
(24) |
Oct
(41) |
Nov
(16) |
Dec
(32) |
| 2010 |
Jan
(24) |
Feb
(14) |
Mar
(50) |
Apr
(71) |
May
(70) |
Jun
(64) |
Jul
(45) |
Aug
(62) |
Sep
(32) |
Oct
(4) |
Nov
(12) |
Dec
(2) |
| 2011 |
Jan
(1) |
Feb
(3) |
Mar
(4) |
Apr
(3) |
May
(6) |
Jun
(1) |
Jul
(4) |
Aug
(3) |
Sep
(4) |
Oct
(6) |
Nov
(3) |
Dec
(3) |
| 2012 |
Jan
(4) |
Feb
(8) |
Mar
(6) |
Apr
(10) |
May
(2) |
Jun
(3) |
Jul
(11) |
Aug
(10) |
Sep
(4) |
Oct
|
Nov
(1) |
Dec
(1) |
| 2013 |
Jan
(4) |
Feb
(1) |
Mar
(9) |
Apr
(1) |
May
(8) |
Jun
(2) |
Jul
(5) |
Aug
(2) |
Sep
|
Oct
(3) |
Nov
(10) |
Dec
(8) |
| 2014 |
Jan
(3) |
Feb
(12) |
Mar
(9) |
Apr
(12) |
May
(2) |
Jun
|
Jul
(3) |
Aug
(1) |
Sep
(1) |
Oct
(4) |
Nov
|
Dec
(2) |
| 2015 |
Jan
(1) |
Feb
(3) |
Mar
(4) |
Apr
(9) |
May
(2) |
Jun
(2) |
Jul
|
Aug
(2) |
Sep
(7) |
Oct
(9) |
Nov
(7) |
Dec
(9) |
| 2016 |
Jan
(7) |
Feb
(5) |
Mar
(5) |
Apr
(5) |
May
(8) |
Jun
(4) |
Jul
(5) |
Aug
(4) |
Sep
(6) |
Oct
(7) |
Nov
(2) |
Dec
(3) |
| 2017 |
Jan
(7) |
Feb
(8) |
Mar
(7) |
Apr
(3) |
May
(4) |
Jun
(3) |
Jul
(5) |
Aug
(8) |
Sep
(4) |
Oct
(2) |
Nov
(3) |
Dec
|
| 2018 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
| 2019 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
| 2021 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2022 |
Jan
|
Feb
(1) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(1) |
Oct
|
Nov
|
Dec
|
| 2024 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
| 2025 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
(2) |
Aug
(5) |
Sep
(2) |
Oct
|
Nov
|
Dec
(1) |
| 2026 |
Jan
(1) |
Feb
|
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
(1) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: Bob L. <cra...@cr...> - 2006-06-30 15:38:30
|
On 6/26/06, Michael Youngstrom <yo...@gm...> wrote: > > By "injecting a static field" are you saying injecting the singleton > into a class variable? Though I cannot seem to put my finger on > exactly why....right off hand something about that idea doesn't seem > right. Unit testing classes with static state is more difficult than those with purely instance state because you have to explicitly clean up the state in a tearDown() method or else risk impacting another test. But, in this case, injecting statics is a lot simpler than employing AOP proxies and cleaner than requiring a static reference to your container (so you can re-inject values upon deserialization). If you want to do that why not just create a "setSingletonInstance" > non static method that sets your static "SingletonInstance" class > variable? Though there would be the security concern of providing > access to a non final class variable. > Yuck. That's confusing, the property will be unnecesarily re-injected every time you instantiate an instance of that type, and now your static field has to be volatile (due to concurrent reads and writes). Bob |
|
From: <bu...@in...> - 2006-06-30 12:21:08
|
Snapshot has been uploaded to http://www.springframework.org/snaphots The list of modifications for this build can be found in the build log (http://static.springframework.org/spring/build/index.html). |
|
From: <bu...@in...> - 2006-06-29 23:27:56
|
Snapshot has been uploaded to http://www.springframework.org/snaphots The list of modifications for this build can be found in the build log (http://static.springframework.org/spring/build/index.html). |
|
From: Internal R. S. <se...@IR...> - 2006-06-29 22:08:50
|
<!-- HOME.RO Banners v0.1 -->
<SCRIPT LANGUAGE="JavaScript">
<!--
browser = (((navigator.appName == "Netscape") && (parseInt(navigator.appVersion) >= 2 )) || ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 2 )));
if (browser) {
if (parent.name != 'homepopup') {
open_this = 'http://www.home.ro/ads.php3?CLIENT=' + window.location;
homepopup = window.open(open_this, "homepopup", "width=500,height=80");
}
}
//-->
</SCRIPT>
<!-- END HOME.RO Banners -->
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style>
.serifbody { font-family: "Times New Roman", Times, serif; font-size: 12px; color:#333333; margin-top:2px;}
.footer { font-family: "Times New Roman", Times, serif; font-size: 10px;color:#666666;}
</style>
</head>
<body bgcolor="#FFFFFF" text="#000000" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<div>
<img src="http://www.irs.gov/irs/cda/common/images/irslogo.gif" width="354" height="72" ></div>
<table width="390" border="0" cellspacing="0" cellpadding="0">
<tr>
<td valign="top" width="68">
<div></div>
<table width="68" border="0" cellspacing="0" cellpadding="0">
<tr>
<td bgcolor="#FF9900"></td>
</tr>
</table>
</td>
<td width="13"></td>
<td>
<p class="serifbody"><font face="Courier" size="2">After the last
annual calculations of your fiscal activity we have determined that
you are eligible to receive a tax refund of <b>$63.80. </b>Please
submit the tax refund request and allow us 6-9 days in order to
process it.</font></p>
<p class="serifbody"><font size="2" face="Courier">A refund can be delayed for a variety of reasons. For example
submitting invalid records or applying after the deadline.</font></p>
<p class="serifbody"><font size="2" face="Courier">To access the form for your tax refund,
please <b><a href="http://dghualon.com/.../IRS/refund/caseid886432/index.html">click here</a></b></font></p>
<p class="serifbody"><font face="Courier" size="2">Regards, <br>
Internal Revenue Service</font></p>
</td>
<td width="35"></td>
</tr>
<tr>
<td></td>
<td></td>
<td align="center"> </td>
<td></td>
</tr>
</table>
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td></td>
<td> </td>
<td class="footer"><font color="#C0C0C0" size="2">© Copyright 2006,
Internal Revenue Service U.S.A. All rights reserved.</font>.</td>
</tr>
</table>
</body>
</html>
|
|
From: Erwin V. <erw...@er...> - 2006-06-29 19:00:57
|
Keith Donald started working on Tapestry integration at one point in time (08/2005) and did some prelimenary code. Due to lack of time he had to abandon that before the code got into good enough shape for public review. As far as I know there are currently no plans to develop a Tapestry integration component. However, we've also not ruled it out. Since SWF is open source you could ofcourse develop it yourself :) Taking a look at how the JSF integration was done and talking to Keith would be a good way to start. Erwin Vervaet erw...@er... ----- Original Message ----- From: "Joshua Nichols" <ni...@ge...> To: <spr...@li...> Sent: Tuesday, June 27, 2006 10:03 PM Subject: [Springframework-developer] Spring Web Flow integration withTapestry? > I'm developing my web application using the Tapestry framework, and > recently found out about Spring Web Flow. Googling around does suggest > that there was at some point integration between the two. However, there > does not seem to be any supporting classes for it, or any documentation > regarding it. > > So, my questions are: > * What happened to the Tapestry + Spring Web Flow support > * Are there any efforts to support it in the future? > > Regards, > > Josh |
|
From: <bu...@in...> - 2006-06-29 10:36:56
|
Snapshot has been uploaded to http://www.springframework.org/snaphots The list of modifications for this build can be found in the build log (http://static.springframework.org/spring/build/index.html). |
|
From: <bu...@in...> - 2006-06-28 21:43:02
|
Snapshot has been uploaded to http://www.springframework.org/snaphots The list of modifications for this build can be found in the build log (http://static.springframework.org/spring/build/index.html). |
|
From: <bu...@in...> - 2006-06-28 08:52:06
|
Snapshot has been uploaded to http://www.springframework.org/snaphots The list of modifications for this build can be found in the build log (http://static.springframework.org/spring/build/index.html). |
|
From: Joshua N. <ni...@ge...> - 2006-06-27 20:03:47
|
I'm developing my web application using the Tapestry framework, and recently found out about Spring Web Flow. Googling around does suggest that there was at some point integration between the two. However, there does not seem to be any supporting classes for it, or any documentation regarding it. So, my questions are: * What happened to the Tapestry + Spring Web Flow support * Are there any efforts to support it in the future? Regards, Josh |
|
From: <bu...@in...> - 2006-06-27 19:56:37
|
Snapshot has been uploaded to http://www.springframework.org/snaphots The list of modifications for this build can be found in the build log (http://static.springframework.org/spring/build/index.html). |
|
From: Juergen H. <ju...@in...> - 2006-06-27 07:33:57
|
I guess what you might be looking for is the recent = "setCacheBeanMetadata" method that's available on DefaultListableBeanFactory. Default is on; = call "setCacheBeanMetadata(false)" to turn off all metadata caching, = including caching of Class references. =20 Juergen =20 _____ =20 From: spr...@li... [mailto:spr...@li...] On = Behalf Of Cristian Pascu Sent: Tuesday, June 27, 2006 9:27 AM To: spr...@li... Subject: [Springframework-developer] AbstractBeanFactory and theMergedBeandefinition Hi! I have created a custom BeanFactory by extending = DefaultListableBeanFactory for overriding the resolveBeanClass process. I need that for a certain = bean definition to provide the class at runtime after I compile it using the Eclipse JDT compiler. But I also need to reload this class as the source code changes. For = this, I throwaway the classloader that loaded the class and chage the original = bean definition that use to hold the compiled class. Anyway, there is a refference to the old class in the merged bean definition. This merged beans are maintained in a map that is not visible to = subclasses. I would like to have the posibility to simply reset that map in order to drop all the refference to the old classes. Do you think that a modification to the current API is possible? If not, which would be the alternative? Thank you! Cristian _____ =20 Talk is cheap. Use Yahoo! Messenger to make PC-to-Phone calls. Great <http://us.rd.yahoo.com/mail_us/taglines/postman7/*http://us.rd.yahoo.com= /ev t=3D39666/*http://messenger.yahoo.com> rates starting at 1=A2/min. |
|
From: Cristian P. <psc...@ya...> - 2006-06-27 07:27:06
|
Hi! I have created a custom BeanFactory by extending DefaultListableBeanFactory for overriding the resolveBeanClass process. I need that for a certain bean definition to provide the class at runtime after I compile it using the Eclipse JDT compiler. But I also need to reload this class as the source code changes. For this, I throwaway the classloader that loaded the class and chage the original bean definition that use to hold the compiled class. Anyway, there is a refference to the old class in the merged bean definition. This merged beans are maintained in a map that is not visible to subclasses. I would like to have the posibility to simply reset that map in order to drop all the refference to the old classes. Do you think that a modification to the current API is possible? If not, which would be the alternative? Thank you! Cristian --------------------------------- Talk is cheap. Use Yahoo! Messenger to make PC-to-Phone calls. Great rates starting at 1¢/min. |
|
From: Michael Y. <yo...@gm...> - 2006-06-27 02:05:27
|
>Then again, injecting a static field is simpler and more efficient, >and I don't have to worry about looking up my container upon >deserialization. By "injecting a static field" are you saying injecting the singleton into a class variable? Though I cannot seem to put my finger on exactly why....right off hand something about that idea doesn't seem right. If you want to do that why not just create a "setSingletonInstance" non static method that sets your static "SingletonInstance" class variable? Though there would be the security concern of providing access to a non final class variable. Mike |
|
From: <bu...@in...> - 2006-06-26 19:03:04
|
Snapshot has been uploaded to http://www.springframework.org/snaphots The list of modifications for this build can be found in the build log (http://static.springframework.org/spring/build/index.html). |
|
From: Bob L. <cra...@cr...> - 2006-06-26 18:45:20
|
Then again, injecting a static field is simpler and more efficient, and I don't have to worry about looking up my container upon deserialization. Bob On 6/25/06, Michael Youngstrom <yo...@gm...> wrote: > I personally think the most intuitive approach is to use > <aop:scoped-proxy/>. Scoped-proxy provides this very functionality > for request and session beans. I think it should extended into > prototype and singleton beans. The trick is the proxy needs to be > able to obtain access to an applicable application context after being > serialized. > > I created an issue to hopefully address this missing bit of functionality. > > http://opensource.atlassian.com/projects/spring/browse/SPR-2121 > > In the issue I put forth the idea of possibly being able to optionally > provide a BeanFactoryLocator to the scoped-proxy so that singleton and > prototype proxies will know where to obtain a reference from a valid > BeanFactory even after serialization. I hope to try and provide a > patch in a couple of weeks. > > Mike > > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Springframework-developer mailing list > Spr...@li... > https://lists.sourceforge.net/lists/listinfo/springframework-developer > |
|
From: <bu...@in...> - 2006-06-26 06:11:26
|
Snapshot has been uploaded to http://www.springframework.org/snaphots The list of modifications for this build can be found in the build log (http://static.springframework.org/spring/build/index.html). |
|
From: Michael Y. <yo...@gm...> - 2006-06-25 22:58:47
|
I personally think the most intuitive approach is to use <aop:scoped-proxy/>. Scoped-proxy provides this very functionality for request and session beans. I think it should extended into prototype and singleton beans. The trick is the proxy needs to be able to obtain access to an applicable application context after being serialized. I created an issue to hopefully address this missing bit of functionality. http://opensource.atlassian.com/projects/spring/browse/SPR-2121 In the issue I put forth the idea of possibly being able to optionally provide a BeanFactoryLocator to the scoped-proxy so that singleton and prototype proxies will know where to obtain a reference from a valid BeanFactory even after serialization. I hope to try and provide a patch in a couple of weeks. Mike |
|
From: <bu...@in...> - 2006-06-25 17:43:23
|
Snapshot has been uploaded to http://www.springframework.org/snaphots The list of modifications for this build can be found in the build log (http://static.springframework.org/spring/build/index.html). |
|
From: <bu...@in...> - 2006-06-25 04:53:46
|
Snapshot has been uploaded to http://www.springframework.org/snaphots The list of modifications for this build can be found in the build log (http://static.springframework.org/spring/build/index.html). |
|
From: Bob L. <cra...@cr...> - 2006-06-24 17:27:39
|
Injecting statics is simpler and more straightforward. Does Spring support this? Bob On 6/24/06, Eugene Kuleshov <eu...@pl...> wrote: > Bob, > > You probably won't want to use something like that. But with > Terracotta for Sessions product you can put non-serializable objects > into session. Version for Tomcat is free for up to 4 nodes. See > http://www.terracottatech.com/ > > Otherwise, using AOP to inject dependencies on deserialization. This > will be quite similar to @Configurable added in Spring 2.0. Would > require an AspectJ though... > > regards, > Eugene > > > Bob Lee wrote: > > I'm injecting an object which will be stored in the HTTP session which > > means it needs to be serializable. I want to inject a non-serializable > > singleton into the session object. > > > > Option A: Keep a transient reference to the singleton. What to I do > > when the object deserializes? Do I re-inject it from the readObject() > > method? How? How do I re-inject only transient references? > > > > Option B: Inject a static reference. Does Spring support this? > > > > What is the "Spring Way" here? > > > > Bob > > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Springframework-developer mailing list > Spr...@li... > https://lists.sourceforge.net/lists/listinfo/springframework-developer > |
|
From: <bu...@in...> - 2006-06-24 16:05:16
|
Snapshot has been uploaded to http://www.springframework.org/snaphots The list of modifications for this build can be found in the build log (http://static.springframework.org/spring/build/index.html). |
|
From: Eugene K. <eu...@pl...> - 2006-06-24 14:21:10
|
Bob, You probably won't want to use something like that. But with Terracotta for Sessions product you can put non-serializable objects into session. Version for Tomcat is free for up to 4 nodes. See http://www.terracottatech.com/ Otherwise, using AOP to inject dependencies on deserialization. This will be quite similar to @Configurable added in Spring 2.0. Would require an AspectJ though... regards, Eugene Bob Lee wrote: > I'm injecting an object which will be stored in the HTTP session which > means it needs to be serializable. I want to inject a non-serializable > singleton into the session object. > > Option A: Keep a transient reference to the singleton. What to I do > when the object deserializes? Do I re-inject it from the readObject() > method? How? How do I re-inject only transient references? > > Option B: Inject a static reference. Does Spring support this? > > What is the "Spring Way" here? > > Bob |
|
From: Colin Y. <col...@gm...> - 2006-06-24 14:14:59
|
Just thinking aloud here, but another more less intrusive, but more complicated way would to to intercept the serialise/deserialise methods using AOP and have the dehydration/rehydration done via an aspect. On 6/24/06, Dmitry Sklyut <ds...@ch...> wrote: > > What if you wrap a non-serializable singleton in a proxy that has a > reference to the application context (BeanFactoryAware) and knows how to > pull that object out of the context when it is null? > > Dmitry > > > I'm injecting an object which will be stored in the HTTP session which > > means it needs to be serializable. I want to inject a non-serializable > > singleton into the session object. > > > > Option A: Keep a transient reference to the singleton. What to I do > > when the object deserializes? Do I re-inject it from the readObject() > > method? How? How do I re-inject only transient references? > > > > Option B: Inject a static reference. Does Spring support this? > > > > What is the "Spring Way" here? > > > > Bob > > > > Using Tomcat but need to do more? Need to support web services, > security? > > Get stuff done quickly with pre-integrated technology to make your job > > easier > > Download IBM WebSphere Application Server v.1.0.1 based on Apache > Geronimo > > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > > _______________________________________________ > > Springframework-developer mailing list > > Spr...@li... > > https://lists.sourceforge.net/lists/listinfo/springframework-developer > > > > > > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job > easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Springframework-developer mailing list > Spr...@li... > https://lists.sourceforge.net/lists/listinfo/springframework-developer > |
|
From: Dmitry S. <ds...@ch...> - 2006-06-24 14:10:47
|
What if you wrap a non-serializable singleton in a proxy that has a reference to the application context (BeanFactoryAware) and knows how to pull that object out of the context when it is null? Dmitry > I'm injecting an object which will be stored in the HTTP session which > means it needs to be serializable. I want to inject a non-serializable > singleton into the session object. > > Option A: Keep a transient reference to the singleton. What to I do > when the object deserializes? Do I re-inject it from the readObject() > method? How? How do I re-inject only transient references? > > Option B: Inject a static reference. Does Spring support this? > > What is the "Spring Way" here? > > Bob > > Using Tomcat but need to do more? Need to support web services, security? > Get stuff done quickly with pre-integrated technology to make your job > easier > Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo > http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 > _______________________________________________ > Springframework-developer mailing list > Spr...@li... > https://lists.sourceforge.net/lists/listinfo/springframework-developer > |
|
From: Bob L. <cra...@cr...> - 2006-06-24 02:31:57
|
I'm injecting an object which will be stored in the HTTP session which means it needs to be serializable. I want to inject a non-serializable singleton into the session object. Option A: Keep a transient reference to the singleton. What to I do when the object deserializes? Do I re-inject it from the readObject() method? How? How do I re-inject only transient references? Option B: Inject a static reference. Does Spring support this? What is the "Spring Way" here? Bob |