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: Keith D. <kd...@cs...> - 2004-11-29 17:16:05
|
>As for defining the mgmt interface in code - aren't >we getting into the realms of recreating what JMX does already? No, JMX employs different strategies for getting to the same thing; that is, a configured management descriptor (MBeanInfo) describing a manageable object. As you know, one of these strategies is reflection: you have your bean implement a "*MBean" interface and JMX uses reflection to generate a new MBeanInfo descriptor when your bean is registered with the MBeanServer. But this has limitations: there is only so much you can find out from reflection. And MBeanInfos are not shared. Another strategy involves creating populated MBeanInfo instances ahead of time, to support dynamic mbeans and model mbeans. You specify the descriptor separately and at runtime a DynamicMBean or RequiredModelMBean proxy connects the descriptor with the managed bean instance. In these cases you're not required to define a strongly typed management interface at all. I prefer strongly typed POJO management interfaces combined with descriptive, configurable management metadata that can be shared between POJO implementations that are of the same _logical type_. For example, let's say we have a logical type, like the JSR-77 "Service". Such a type can be expressed via a POJO management interface -- Service --, with methods like start(), and stop(). Such an interface might also extend a base management interface used by all managed entities, like "ManagedSystemElement". In this example, I'd prefer my POJOs to implement Service, and I'd prefer to have a shared "Service MBeanInfo" instance providing metadata about the attributes, operations, and notifications instrumented by all services. At runtime, I'd expect my MBean adapter to note my bean is a "Service" and locate the right MBeanInfo descriptor for registration in an MBeanServer as a ModelMBean. One way of providing MBeanInfo information is XML, but I'd just assume have it defined in java-code using annotations---cutting out the need for reflection. My only caveat with such a solution is many times you want a much more generically typed management model exposed to _clients_: e.g with strings, primitives, object names, and generic tabular/composite data structure types ONLY, while the _interal_ workings of your managed beans want a richly typed model to work with. This is because you can't often make the assumption all your management clients have access to your classes, or that they're even all java. So I can see a need for our JMX support to create translators that map between a richly typed model to a more generic management model. Keith Keith -----Original Message----- From: spr...@li... [mailto:spr...@li...] On Behalf Of Rob Harrop Sent: Monday, November 29, 2004 11:44 AM To: spr...@li... Subject: Re: [Springframework-developer] Spring JMX Query Keith, I have a passing familiarity with Commons Modeler and I understand what you mean about the inheritance. However, it should be more than possible to allow for mgmt interface inheritance using XML - there is no reason it couldn't be done. As for defining the mgmt interface in code - aren't we getting into the realms of recreating what JMX does already? Add to that I'm not sure how all the different metadata utils such as Commons Attributes handle inheritance - I'll need to check that out. Rob Keith Donald wrote: >Rob, > >Commons-modeler has such a format for defining model mbean metadata in XML, >and an associated Registry allowing MBeanInfo definitions to be indexed by >'type' (essentially a logical management class identifier) and shared >between different MBean instances (perhaps backed by different POJO >implementations.) > >In my experience where the format breaks down is with MBean inheritance. It >would extremely helpful if you could define base management interfaces with >metadata and be able to extend to derive more specific management types. >For anyone whose ever done any network management work, this is important. >Look at JSR-77, it's basically defines a management hierarchy as well. > >Do we have the ability to define management interfaces in java code (with an >inheritance hierarchy), markup those interfaces with management metadata, >and generate corresponding MBeanInfos at runtime that can be shared? I >wonder if that would work. I'd much rather apply attributes to the >management interfaces than the managed beans themselves... > >Keith > >-----Original Message----- >From: spr...@li... >[mailto:spr...@li...] On Behalf Of >Rob Harrop >Sent: Monday, November 29, 2004 11:18 AM >To: spr...@li... >Subject: [Springframework-developer] Spring JMX Query > >All, > >I have raised a new issue on JIRA related to Spring JMX and I would like >your input: http://opensource.atlassian.com/projects/spring/browse/SPR-498. > >Rob > > >------------------------------------------------------- >SF email is sponsored by - The IT Product Guide >Read honest & candid reviews on hundreds of IT Products from real users. >Discover which products truly live up to the hype. Start reading now. >http://productguide.itmanagersjournal.com/ >_______________________________________________ >Springframework-developer mailing list >Spr...@li... >https://lists.sourceforge.net/lists/listinfo/springframework-developer > > > >------------------------------------------------------- >SF email is sponsored by - The IT Product Guide >Read honest & candid reviews on hundreds of IT Products from real users. >Discover which products truly live up to the hype. Start reading now. >http://productguide.itmanagersjournal.com/ >_______________________________________________ >Springframework-developer mailing list >Spr...@li... >https://lists.sourceforge.net/lists/listinfo/springframework-developer > > > > ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://productguide.itmanagersjournal.com/ _______________________________________________ Springframework-developer mailing list Spr...@li... https://lists.sourceforge.net/lists/listinfo/springframework-developer |
|
From: Rob H. <ro...@ca...> - 2004-11-29 17:09:15
|
All, I ran these tests on my machine and did a little tweaking with the parameters to see what performance improvements could be made - here is what I got. With the default configuration my figures were: 1008;945;968;929;;1109;1109;1039;1125;922;945;929;1179; With the proxyTargetClass flasg set to true I got: 617;570;593;578;;765;719;687;726;547;546;539;765; And with both frozen and proxyTargetClass set to true I got: 422;258;257;258;;437;406;343;414;234;234;234;453; This is the output given by the tool and each field is nanoseconds per invocation for a given test. As you can see it is more than possible to substantially improve the performance shown for Spring in the performance test suite. However, in the current version of Spring you cannot set the frozen when using the ProxyFactoryBean. I have a fix for this that I used for the test which involves overriding the setFrozen method on ProxyFactoryBean to set another flag instead of frozen and then using this flag to set the frozen flag just before proxy creation. If everyone is happy with this fix I will commit it to CVS. Rob Rob Harrop wrote: > All, > > An interesting article today about AOP performance and the new > performance suite created by the AspectWerkz team. As always I take > these with a pinch of salt but I am trying to get hold of the code so > that I can run the tests myself and see if the Spring figures can be > tweaked at all. > > http://www.theserverside.com/news/thread.tss?thread_id=30238 > > Rob > > > ------------------------------------------------------- > SF email is sponsored by - The IT Product Guide > Read honest & candid reviews on hundreds of IT Products from real users. > Discover which products truly live up to the hype. Start reading now. > http://productguide.itmanagersjournal.com/ > _______________________________________________ > Springframework-developer mailing list > Spr...@li... > https://lists.sourceforge.net/lists/listinfo/springframework-developer > > |
|
From: Rob H. <ro...@ca...> - 2004-11-29 16:46:38
|
Keith, I have a passing familiarity with Commons Modeler and I understand what you mean about the inheritance. However, it should be more than possible to allow for mgmt interface inheritance using XML - there is no reason it couldn't be done. As for defining the mgmt interface in code - aren't we getting into the realms of recreating what JMX does already? Add to that I'm not sure how all the different metadata utils such as Commons Attributes handle inheritance - I'll need to check that out. Rob Keith Donald wrote: >Rob, > >Commons-modeler has such a format for defining model mbean metadata in XML, >and an associated Registry allowing MBeanInfo definitions to be indexed by >'type' (essentially a logical management class identifier) and shared >between different MBean instances (perhaps backed by different POJO >implementations.) > >In my experience where the format breaks down is with MBean inheritance. It >would extremely helpful if you could define base management interfaces with >metadata and be able to extend to derive more specific management types. >For anyone whose ever done any network management work, this is important. >Look at JSR-77, it's basically defines a management hierarchy as well. > >Do we have the ability to define management interfaces in java code (with an >inheritance hierarchy), markup those interfaces with management metadata, >and generate corresponding MBeanInfos at runtime that can be shared? I >wonder if that would work. I'd much rather apply attributes to the >management interfaces than the managed beans themselves... > >Keith > >-----Original Message----- >From: spr...@li... >[mailto:spr...@li...] On Behalf Of >Rob Harrop >Sent: Monday, November 29, 2004 11:18 AM >To: spr...@li... >Subject: [Springframework-developer] Spring JMX Query > >All, > >I have raised a new issue on JIRA related to Spring JMX and I would like >your input: http://opensource.atlassian.com/projects/spring/browse/SPR-498. > >Rob > > >------------------------------------------------------- >SF email is sponsored by - The IT Product Guide >Read honest & candid reviews on hundreds of IT Products from real users. >Discover which products truly live up to the hype. Start reading now. >http://productguide.itmanagersjournal.com/ >_______________________________________________ >Springframework-developer mailing list >Spr...@li... >https://lists.sourceforge.net/lists/listinfo/springframework-developer > > > >------------------------------------------------------- >SF email is sponsored by - The IT Product Guide >Read honest & candid reviews on hundreds of IT Products from real users. >Discover which products truly live up to the hype. Start reading now. >http://productguide.itmanagersjournal.com/ >_______________________________________________ >Springframework-developer mailing list >Spr...@li... >https://lists.sourceforge.net/lists/listinfo/springframework-developer > > > > |
|
From: Keith D. <kd...@cs...> - 2004-11-29 16:39:32
|
Rob, Commons-modeler has such a format for defining model mbean metadata in XML, and an associated Registry allowing MBeanInfo definitions to be indexed by 'type' (essentially a logical management class identifier) and shared between different MBean instances (perhaps backed by different POJO implementations.) In my experience where the format breaks down is with MBean inheritance. It would extremely helpful if you could define base management interfaces with metadata and be able to extend to derive more specific management types. For anyone whose ever done any network management work, this is important. Look at JSR-77, it's basically defines a management hierarchy as well. Do we have the ability to define management interfaces in java code (with an inheritance hierarchy), markup those interfaces with management metadata, and generate corresponding MBeanInfos at runtime that can be shared? I wonder if that would work. I'd much rather apply attributes to the management interfaces than the managed beans themselves... Keith -----Original Message----- From: spr...@li... [mailto:spr...@li...] On Behalf Of Rob Harrop Sent: Monday, November 29, 2004 11:18 AM To: spr...@li... Subject: [Springframework-developer] Spring JMX Query All, I have raised a new issue on JIRA related to Spring JMX and I would like your input: http://opensource.atlassian.com/projects/spring/browse/SPR-498. Rob ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://productguide.itmanagersjournal.com/ _______________________________________________ Springframework-developer mailing list Spr...@li... https://lists.sourceforge.net/lists/listinfo/springframework-developer |
|
From: Rob H. <ro...@ca...> - 2004-11-29 16:19:52
|
All, I have raised a new issue on JIRA related to Spring JMX and I would like your input: http://opensource.atlassian.com/projects/spring/browse/SPR-498. Rob |
|
From: Rob H. <ro...@ca...> - 2004-11-29 15:51:12
|
All, An interesting article today about AOP performance and the new performance suite created by the AspectWerkz team. As always I take these with a pinch of salt but I am trying to get hold of the code so that I can run the tests myself and see if the Spring figures can be tweaked at all. http://www.theserverside.com/news/thread.tss?thread_id=30238 Rob |
|
From: Matt R. <ma...@so...> - 2004-11-29 11:55:20
|
Morning everyone, I'll be speaking at Denver's JUG on Spring in December. http://www.denverjug.org/index.jsp Please add this to www.springframework.org at your convenience. Thanks, Matt |
|
From: <jue...@we...> - 2004-11-29 10:35:17
|
I've removed the deprecation from "exposeHelpers(Context, = HttpServletRequest)", as there is a valid use case: instantiating = further Velocity tools that need a Velocity Context. =20 I've also added an overloaded "exposeHelpers" variant that takes = VelocityContext, HttpServletRequest and HttpServletResponse: mainly for = creating subclasses of ViewTool that depend on a Velocity ViewContext, = with ChainedContext being the only out-of-the-box implementation and in = turn depending on HttpServletRequest and HttpServletResponse. =20 Finally, I've added an overloaded "createVelocityContext" method that = takes model Map, HttpServletRequest and HttpServletResponse: You could = potentially create a ChainedContext instance there, if you wanted = request attributes etc to be visible in the Velocity template mode. = Tools that depend on ViewContext could then simply take the passed-in = Velocity Context as-is, passing it into "init". =20 Juergen =20 ________________________________ Von: spr...@li... im Auftrag = von Roberto Cosenza Gesendet: Mo 29.11.2004 09:16 An: spr...@li... Betreff: [Springframework-developer] VelocityView and exposeHelpers Hi. A guy in the user mailinglist has pointed out a problem. It tries to configure the velocity-tools in the exposeHelpers method but he can't since they require a HttpServletResponse (arguably). Maybe there should be an overrided version of the exposeHelpers method having both request and response as args. /Rob -- Roberto Cosenza Infoflex Connect AB, Sweden Tel: +46-(0)8-55576860, Fax: +46-(0)8-55576861 -- Nordic Messaging Technologies is a trademark of Infoflex Connect. Please visit www.nordicmessaging.se for more information about our carrier-grade messaging products. ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://productguide.itmanagersjournal.com/ _______________________________________________ Springframework-developer mailing list Spr...@li... https://lists.sourceforge.net/lists/listinfo/springframework-developer |
|
From: <jue...@we...> - 2004-11-29 09:10:06
|
No problem, in principle. I just wonder what exactly you need this for? = Shouldn't we at least reset the internal context state of the = ApplicationObjectSupport instance if the passed-in context reference was = null? Simply ignoring the call in that case, leaving the internal state = as-is, doesn't seem entirely clean... =20 Juergen =20 ________________________________ Von: spr...@li... im Auftrag = von Serg Bogatyrjov Gesendet: Sa 27.11.2004 18:53 An: spr...@li... Betreff: [Springframework-developer] Harmless patch for = ApplicationObjectSupport This small correction will reduce efforts of writing junit tests. I found the need of this correction while making tests working in spring-rich-client project. Best regards, Serge Bogatyrjov. |
|
From: Darren D. <da...@da...> - 2004-11-29 08:56:12
|
The test suite is now being built and run on as many CF machines as I can= get it to work on. Six machines currently have a JDK on them, but one of the= JDK 1.3.1 boxes always crashes the java process during the tests target with = no error message and I suspended the schedule for this machine. Of the other five, four are working well. Unfortunately, the fifth is th= e only other JDK 1.3.1 box and this is failing several tests that should be passing (they pass on my machine using Sun 1.3.1 JDK at any rate). The machine is the 64-bit Opteron - if anyone else has a 64-bit chip anywhere= , I'd be interested to know how the test suite runs on any JDK. Each of the five machines is running 3 builds per day with a CVS update f= rom the anonymous CVS servers (the only ones I can use from the compile farm) prior to each round of builds. If (and only if) a build fails an email i= s sent with the last few lines of output. I intend to change the email tar= get today from my address to the dev list address assuming no objections. On= ce an email has been sent to notify a failed build, no further mail will be sen= t by that machine until a manual reset is made for it, although the machine wi= ll continue to participate in scheduled updates and builds. I've had a go at getting autobuilds to work on some of the machines too w= hich was the original goal, but this is fraught with additional problems.=20 Principally, the CF machines are so over worked that in some cases it is taking in excess of 40 minutes just to do a complete build and test suite= run. Simply attempting to extract a tomcat binary can itself take something l= ike 15-20 minutes when disk usage is particularly high. Hopefully I'll get i= t running on at least one of the machines soon. Regards, --=20 Darren Davison Public Key: #DD356B0D |
|
From: Roberto C. <rob...@in...> - 2004-11-29 08:16:33
|
Hi. A guy in the user mailinglist has pointed out a problem. It tries to configure the velocity-tools in the exposeHelpers method but he can't since they require a HttpServletResponse (arguably). Maybe there should be an overrided version of the exposeHelpers method having both request and response as args. /Rob -- Roberto Cosenza Infoflex Connect AB, Sweden Tel: +46-(0)8-55576860, Fax: +46-(0)8-55576861 -- Nordic Messaging Technologies is a trademark of Infoflex Connect. Please visit www.nordicmessaging.se for more information about our carrier-grade messaging products. |
|
From: Roberto C. <rob...@in...> - 2004-11-28 08:50:45
|
Matt Raible wrote: > I think Spring has an awesome MVC framework. The things I find > missing at its core are client-side validation and a rich JSP tag > library. You can solve #1 with Commons Validator and #2 with JSP 2.0 > Tag files - neither of which are distributed with Spring. Right....jsp....Springs is View technology independent. It may not be specialized on one view tech but that's your choice > > I like all the ones I wrote about in the comparison and I will > continue to use them all. I think Spring is better than Struts, but > on par with WebWork. I just wish Spring had easier ways to do > <select>s and multi-select <select>s. Have you seen the Spring-Velocity macros? Selects are really not a problem. /roberto |
|
From: Keith D. <kd...@cs...> - 2004-11-28 03:20:22
|
Was thinking the following would be useful additions to our hibernate support: 1. The ability to export schema definitions to a file. Currently to do this, I am forced to use Hibernate's Schema Export directly with a Spring configured SessionFactory. This involves a hack of implementing a custom DataSourceConnectionProvider that works post LocalSessionFactoryBean initialization. 2. Support for setFlushMode(FlushMode.COMMIT) in Hibernate template. Doing this now requires issuing a callback. 3. Support for 2.16 scrollable result sets (perhaps abstracted away by an iterator interface), and notably processing large batches of scrollable result sets in a 'best practice' fashion discussed here: http://blog.hibernate.org/cgi-bin/blosxom.cgi/2004/08/ Something like: Iterator it = hibernateTemplate.iterator("from Entity", 20); while (it.hasNext()) { Entity entity = (Entity)it.next(); } . where 20 is a batchSize that, when reached, should trigger a session.flush() and session.clear() (all encapsulated by the template) Keith |
|
From: <al...@jt...> - 2004-11-27 23:40:48
|
<html><head>
<style>
.white { color:#FFFFFF }.index { background-color:#FFFFFF }.index-passed { =
color:#004400 }.index-failed { color:#FF0000; font-weight:bold }.index-head=
er { font-weight:bold }.link { font-family:arial,helvetica,sans-serif; font=
-size:10pt; color:#FFFFFF; text-decoration:none; }.tab-table { margin: 0em =
0em 0.5em 0em; }.tabs { font-family:arial,helvetica,sans-serif; font-size:8=
pt; color:#000000; font-weight:bold; padding: 0em 2em; background-color:#EE=
EEEE; }.tabs-link { color:#000000; text-decoration:none; }.tabs-link:visite=
d { color:#000000; text-decoration:none; }.tabs-selected { font-family:aria=
l,helvetica,sans-serif; font-size:8pt; color:#000000; font-weight:bold; pad=
ding: 0em 2em; }.tabs-selected { border: inset; }.header-title { font-famil=
y:arial,helvetica,sans-serif; font-size:12pt; color:#000000; font-weight:bo=
ld; }.header-label { font-weight:bold; }.header-data { font-family:arial,he=
lvetica,sans-serif; font-size:10pt; color:#000000; }.modifications-data { f=
ont-family:arial,helvetica,sans-serif; font-size:8pt; color:#000000; }.modi=
fications-sectionheader { background-color:#000066; font-family:arial,helve=
tica,sans-serif; font-size:10pt; color:#FFFFFF; }.modifications-oddrow { ba=
ckground-color:#CCCCCC }.modifications-evenrow { background-color:#FFFFCC }=
.changelists-oddrow { background-color:#CCCCCC }.changelists-evenrow { back=
ground-color:#FFFFCC }.changelists-file-spacer { background-color:#FFFFFF }=
.changelists-file-evenrow { background-color:#EEEEEE }.changelists-file-odd=
row { background-color:#FFFFEE }.changelists-file-header { background-color=
:#666666; font-family:arial,helvetica,sans-serif; font-size:8pt; color:#FFF=
FFF; }.compile-data { font-family:arial,helvetica,sans-serif; font-size:8pt=
; color:#000000; }.compile-error-data { font-family:arial,helvetica,sans-se=
rif; font-size:8pt; color:#FF0000; }.compile-warn-data { font-family:arial,=
helvetica,sans-serif; font-size:8pt; color:#CC9900; }.compile-sectionheader=
{ background-color:#000066; font-family:arial,helvetica,sans-serif; font-s=
ize:10pt; color:#FFFFFF; }.distributables-data { font-family:arial,helvetic=
a,sans-serif; font-size:8pt; color:#000000; }.distributables-sectionheader =
{ background-color:#000066; font-family:arial,helvetica,sans-serif; font-si=
ze:10pt; color:#FFFFFF; }.distributables-oddrow { background-color:#CCCCCC =
}.unittests-sectionheader { background-color:#000066; font-family:arial,hel=
vetica,sans-serif; font-size:10pt; color:#FFFFFF; }.unittests-oddrow { back=
ground-color:#CCCCCC }.unittests-data { font-family:arial,helvetica,sans-se=
rif; font-size:8pt; color:#000000; }.unittests-error { font-family:arial,he=
lvetica,sans-serif; font-size:8pt; color:#901090; }.unittests-failure { fon=
t-family:arial,helvetica,sans-serif; font-size:8pt; color:#FF0000; }.checks=
tyle-oddrow { background-color:#CCCCCC }.checkstyle-data { font-family:aria=
l,helvetica,sans-serif; font-size:8pt; color:#000000; }.checkstyle-sectionh=
eader { background-color:#000066; font-family:arial,helvetica,sans-serif; f=
ont-size:10pt; color:#FFFFFF; }
</style>
</head><body>
<p>
<table width=3D"98%" border=3D"0" cellspacing=3D"0" cellpadding=3D"2" align=
=3D"center"><tr><td class=3D"header-title">BUILD COMPLETE - =
build.158</td></tr><tr><td class=3D"header-data"><span class=
=3D"header-label">Date of build: </span>11/28/2004 00:16:55</td></tr><=
tr><td class=3D"header-data"><span class=3D"header-label">Time to build:&nb=
sp;</span>21 minutes 8 seconds</td></tr><tr><td class=3D"header-data"><span=
class=3D"header-label">Last changed: </span>11/27/2004 12:50:14</td><=
/tr><tr><td class=3D"header-data"><span class=3D"header-label">Last log ent=
ry: </span>Improved Javadoc. Now handles String and Class elements in =
configuration lists.</td></tr></table><p>
<p>
<p>
<table xmlns=3D"http://www.w3.org/TR/html4/strict.dtd" width=3D"98%" border=
=3D"0" cellspacing=3D"0" cellpadding=3D"2" align=3D"center"><tr><td class=
=3D"compile-sectionheader"> Errors/Warnings: (=
6) </td></tr><tr><td><pre class=3D"compile-data">Note: S=
ome input files use or override a deprecated API.<br class=3D"none"/>Note: =
Recompile with -deprecation for details.<br class=3D"none"/>Note: /jteam/bu=
ild2/checkout/spring/spring/mock/org/springframework/mock/web/MockHttpSessi=
on.java uses or overrides a deprecated API.<br class=3D"none"/>Note: Recomp=
ile with -deprecation for details.<br class=3D"none"/>Note: Some input file=
s use or override a deprecated API.<br class=3D"none"/>Note: Recompile with=
-deprecation for details.<br class=3D"none"/></pre></td></tr></table><p>
<table xmlns=3D"http://www.w3.org/TR/html4/strict.dtd" width=3D"98%" border=
=3D"0" cellspacing=3D"0" cellpadding=3D"2" align=3D"center"><tr><td class=
=3D"compile-sectionheader"> Javadoc Errors/War=
nings: (26) </td></tr><tr><td><pre class=3D"compile-data=
">javadoc: Error fetching URL: http://www.hibernate.org/hib_docs/api/packag=
e-list<br/>/jteam/build2/checkout/spring/spring/src/org/springframework/jdb=
c/support/lob/OracleLobHandler.java:76: warning - Tag @see: reference not f=
ound: oracle.sql.BLOB<br/>/jteam/build2/checkout/spring/spring/src/org/spri=
ngframework/jdbc/support/lob/OracleLobHandler.java:76: warning - Tag @see: =
reference not found: oracle.sql.CLOB<br/>/jteam/build2/checkout/spring/spri=
ng/src/org/springframework/jdbc/support/lob/OracleLobHandler.java:115: warn=
ing - Tag @see: reference not found: oracle.sql.BLOB#DURATION_SESSION<br/>/=
jteam/build2/checkout/spring/spring/src/org/springframework/jdbc/support/lo=
b/OracleLobHandler.java:115: warning - Tag @see: reference not found: oracl=
e.sql.BLOB#MODE_READWRITE<br/>/jteam/build2/checkout/spring/spring/src/org/=
springframework/jdbc/support/lob/OracleLobHandler.java:115: warning - Tag @=
see: reference not found: oracle.sql.CLOB#DURATION_SESSION<br/>/jteam/build=
2/checkout/spring/spring/src/org/springframework/jdbc/support/lob/OracleLob=
Handler.java:115: warning - Tag @see: reference not found: oracle.sql.CLOB#=
MODE_READWRITE<br/>/jteam/build2/checkout/spring/spring/src/org/springframe=
work/jdbc/support/lob/OracleLobHandler.java:154: warning - Tag @see: refere=
nce not found: oracle.jdbc.OracleConnection<br/>/jteam/build2/checkout/spri=
ng/spring/src/org/springframework/jdbc/support/lob/OracleLobHandler.java:16=
4: warning - Tag @see: reference not found: oracle.sql.BLOB#createTemporary=
<br/>/jteam/build2/checkout/spring/spring/src/org/springframework/jdbc/supp=
ort/lob/OracleLobHandler.java:164: warning - Tag @see: reference not found:=
oracle.sql.CLOB#createTemporary<br/>/jteam/build2/checkout/spring/spring/s=
rc/org/springframework/jdbc/support/nativejdbc/JBossNativeJdbcExtractor.jav=
a:49: warning - Tag @see: reference not found: org.jboss.resource.adapter.j=
dbc.WrappedConnection#getUnderlyingConnection<br/>/jteam/build2/checkout/sp=
ring/spring/src/org/springframework/jdbc/support/nativejdbc/JBossNativeJdbc=
Extractor.java:49: warning - Tag @see: reference not found: org.jboss.resou=
rce.adapter.jdbc.WrappedStatement#getUnderlyingStatement<br/>/jteam/build2/=
checkout/spring/spring/src/org/springframework/jdbc/support/nativejdbc/JBos=
sNativeJdbcExtractor.java:49: warning - Tag @see: reference not found: org.=
jboss.resource.adapter.jdbc.WrappedResultSet#getUnderlyingResultSet<br/>/jt=
eam/build2/checkout/spring/spring/src/org/springframework/jdbc/support/nati=
vejdbc/WebLogicNativeJdbcExtractor.java:45: warning - Tag @see: reference n=
ot found: weblogic.jdbc.extensions.WLConnection#getVendorConnection<br/>/jt=
eam/build2/checkout/spring/spring/src/org/springframework/jdbc/support/nati=
vejdbc/WebSphereNativeJdbcExtractor.java:34: warning - Tag @see: reference =
not found: com.ibm.ws.rsadapter.jdbc.WSJdbcConnection<br/>/jteam/build2/che=
ckout/spring/spring/src/org/springframework/jdbc/support/nativejdbc/WebSphe=
reNativeJdbcExtractor.java:34: warning - Tag @see: reference not found: com=
.ibm.ws.rsadapter.jdbc.WSJdbcUtil#getNativeConnection<br/>/jteam/build2/che=
ckout/spring/spring/src/org/springframework/jdbc/support/nativejdbc/WebSphe=
reNativeJdbcExtractor.java:34: warning - Tag @see: reference not found: com=
.ibm.ejs.cm.proxy.ConnectionProxy#getPhysicalConnection<br/>/jteam/build2/c=
heckout/spring/spring/src/org/springframework/orm/hibernate/SessionFactoryU=
tils.java:145: warning - Tag @see: reference not found: net.sf.hibernate.im=
pl.SessionFactoryImpl<br/>/jteam/build2/checkout/spring/spring/src/org/spri=
ngframework/orm/hibernate/SessionFactoryUtils.java:145: warning - Tag @see:=
reference not found: net.sf.hibernate.jca.JCASessionFactoryImpl<br/>/jteam=
/build2/checkout/spring/spring/src/org/springframework/orm/hibernate/Sessio=
nHolder.java:41: warning - Tag @see: reference not found: HibernateTransact=
ionObject<br/>/jteam/build2/checkout/spring/spring/src/org/springframework/=
transaction/jta/WebLogicJtaTransactionManager.java:67: warning - Tag @see: =
reference not found: weblogic.transaction.TransactionManager#forceResume<br=
/>/jteam/build2/checkout/spring/spring/src/org/springframework/transaction/=
jta/WebLogicServerTransactionManagerFactoryBean.java:45: warning - Tag @see=
: reference not found: weblogic.transaction.TxHelper#getTransactionManager<=
br/>/jteam/build2/checkout/spring/spring/src/org/springframework/transactio=
n/jta/WebSphereTransactionManagerFactoryBean.java:47: warning - Tag @see: r=
eference not found: com.ibm.ws.Transaction.TransactionManagerFactory#getTra=
nsactionManager<br/>/jteam/build2/checkout/spring/spring/src/org/springfram=
ework/transaction/jta/WebSphereTransactionManagerFactoryBean.java:47: warni=
ng - Tag @see: reference not found: com.ibm.ejs.jts.jta.JTSXA#getTransactio=
nManager<br/>/jteam/build2/checkout/spring/spring/src/org/springframework/t=
ransaction/jta/WebSphereTransactionManagerFactoryBean.java:47: warning - Ta=
g @see: reference not found: com.ibm.ejs.jts.jta.TransactionManagerFactory#=
getTransactionManager<br/>/jteam/build2/checkout/spring/spring/src/org/spri=
ngframework/web/servlet/handler/metadata/PathMap.java:31: warning - @@org.a=
pache.commons.attributes.Indexed() is an unknown tag.<br/></pre></td></tr><=
/table><p>
<table width=3D"98%" border=3D"0" cellspacing=3D"0" cellpadding=3D"2" align=
=3D"center"><tr><td colspan=3D"4" class=3D"unittests-sectionheader"> =
Unit Tests: (2054) </td></tr><tr><td class=
=3D"unittests-data" colspan=3D"2"> All Tests Pas=
sed </td></tr><tr><td><table width=3D"98%" border=3D=
"0" cellspacing=3D"0" cellpadding=3D"2" align=3D"center"></table></td></tr>=
<tr></tr><tr><td colspan=3D"2"> </td></tr></table><p>
<table width=3D"98%" border=3D"0" cellspacing=3D"1" cellpadding=3D"2" align=
=3D"center"><tr><td colspan=3D"6" class=3D"modifications-sectionheader"> =
Modifications since last build: =
(2) </td></tr><tr class=3D"modifications-evenrow"><td c=
lass=3D"modifications-data">modified</td><td class=3D"modifications-data">j=
ohnsonr</td><td class=3D"modifications-data">sandbox/test/org/springframewo=
rk/beans/factory/support/DependencyInjectionAspectSupportTests.java</td><td=
class=3D"modifications-data">Improved Javadoc. Now handles String and Clas=
s elements in configuration lists.</td></tr><tr class=3D"modifications-oddr=
ow"><td class=3D"modifications-data">modified</td><td class=3D"modification=
s-data">johnsonr</td><td class=3D"modifications-data">sandbox/src/org/sprin=
gframework/beans/factory/support/DependencyInjectionAspectSupport.java</td>=
<td class=3D"modifications-data">Improved Javadoc. Now handles String and C=
lass elements in configuration lists.</td></tr></table><p>
<table width=3D"98%" border=3D"0" cellspacing=3D"0" cellpadding=3D"2" align=
=3D"center"><tr><td class=3D"distributables-sectionheader"> =
Deployments by this build: (16) </td>=
</tr><tr><td class=3D"distributables-data">Building jar: /jteam/build2/chec=
kout/spring/spring/dist/spring-core.jar</td></tr><tr class=3D"distributable=
s-oddrow"><td class=3D"distributables-data">Building jar: /jteam/build2/che=
ckout/spring/spring/dist/spring-aop.jar</td></tr><tr><td class=3D"distribut=
ables-data">Building jar: /jteam/build2/checkout/spring/spring/dist/spring-=
context.jar</td></tr><tr class=3D"distributables-oddrow"><td class=3D"distr=
ibutables-data">Building jar: /jteam/build2/checkout/spring/spring/dist/spr=
ing-dao.jar</td></tr><tr><td class=3D"distributables-data">Building jar: /j=
team/build2/checkout/spring/spring/dist/spring-orm.jar</td></tr><tr class=
=3D"distributables-oddrow"><td class=3D"distributables-data">Building jar: =
/jteam/build2/checkout/spring/spring/dist/spring-web.jar</td></tr><tr><td c=
lass=3D"distributables-data">Building jar: /jteam/build2/checkout/spring/sp=
ring/dist/spring-webmvc.jar</td></tr><tr class=3D"distributables-oddrow"><t=
d class=3D"distributables-data">Building jar: /jteam/build2/checkout/spring=
/spring/dist/spring.jar</td></tr><tr><td class=3D"distributables-data">Buil=
ding jar: /jteam/build2/checkout/spring/spring/dist/spring-mock.jar</td></t=
r><tr class=3D"distributables-oddrow"><td class=3D"distributables-data">Bui=
lding war: /jteam/build2/checkout/spring/spring/autobuilds/apps/buildtest/d=
ist/buildtest.war</td></tr><tr><td class=3D"distributables-data">Building w=
ar: /jteam/build2/checkout/spring/spring/autobuilds/apps/buildtest/dist/bui=
ldtest.war</td></tr><tr class=3D"distributables-oddrow"><td class=3D"distri=
butables-data">Building war: /jteam/build2/checkout/spring/spring/autobuild=
s/apps/buildtest/dist/buildtest.war</td></tr><tr><td class=3D"distributable=
s-data">Building jar: /jteam/build2/checkout/spring/spring/autobuilds/apps/=
jpetstore/war/WEB-INF/lib/jpetstore.jar</td></tr><tr class=3D"distributable=
s-oddrow"><td class=3D"distributables-data">Building war: /jteam/build2/che=
ckout/spring/spring/autobuilds/apps/jpetstore/dist/jpetstore.war</td></tr><=
tr><td class=3D"distributables-data">Building jar: /jteam/build2/checkout/s=
pring/spring/autobuilds/apps/jpetstore/war/WEB-INF/lib/jpetstore.jar</td></=
tr><tr class=3D"distributables-oddrow"><td class=3D"distributables-data">Bu=
ilding war: /jteam/build2/checkout/spring/spring/autobuilds/apps/jpetstore/=
dist/jpetstore.war</td></tr></table>
</body></html> |
|
From: Tom K <tk...@co...> - 2004-11-27 23:16:49
|
Thanks Matt for an objective view. Constructive criticism makes things better. Tom K. -----Original Message----- From: spr...@li... [mailto:spr...@li...] On Behalf Of Matt Raible Sent: Saturday, November 27, 2004 10:46 AM To: spr...@li... Cc: spr...@li... Subject: Re: [Springframework-developer] Re: Interestng Comparison of MVC Frameworks First of all, it should be said that this comparison is heavily biased=20 b/c I've used Struts ever since it came out in June 2001.=20 I think Spring has an awesome MVC framework. The things I find missing=20 at its core are client-side validation and a rich JSP tag library. You=20 can solve #1 with Commons Validator and #2 with JSP 2.0 Tag files -=20 neither of which are distributed with Spring. I can understand the lack of JSP tags b/c the current tags allow you to=20 do WSIWIG editing (ala Tapestry) and also you get full control over the=20 HTML. If I were able to make the leap to JSP 2.0, I would probably=20 choose Spring over WebWork and Struts. It's easy to test and easy to=20 work with. I just wish there was a way to have a parent class for your=20 Controllers and SimpleFormControllers. A common base class in a web=20 framework controllers is something I've found useful. I like all the ones I wrote about in the comparison and I will continue=20 to use them all. I think Spring is better than Struts, but on par with=20 WebWork. I just wish Spring had easier ways to do <select>s and=20 multi-select <select>s. You can't really compare Spring MVC to=20 Tapestry/JSF because it's a different type of development (request-based vs. component/event). I would recommend starting a new project with any of these 5 frameworks. Matt Ernesto Echeverria wrote: > well yes, Matt where did you leave spring? > > Tom K wrote: > >> Very interesting pdf presentation on the comparisons of MVC=20 >> frameworks. What makes it interesting is the question =93Which would = I=20 >> choose?=94 since Matt is writing a book on Spring (Spring Live).=20 >> https://equinox.dev.java.net/framework-comparison/WebFrameworks.pdf > ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now.=20 http://productguide.itmanagersjournal.com/ _______________________________________________ Springframework-developer mailing list Spr...@li... https://lists.sourceforge.net/lists/listinfo/springframework-developer --- Incoming mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.764 / Virus Database: 511 - Release Date: 9/15/2004 =20 --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.764 / Virus Database: 511 - Release Date: 9/15/2004 =20 |
|
From: Serg B. <ser...@ma...> - 2004-11-27 18:01:27
|
This small correction will reduce efforts of writing junit tests. I found the need of this correction while making tests working in spring-rich-client project. Best regards, Serge Bogatyrjov. |
|
From: Matt R. <li...@ra...> - 2004-11-27 16:45:54
|
First of all, it should be said that this comparison is heavily biased b/c I've used Struts ever since it came out in June 2001. I think Spring has an awesome MVC framework. The things I find missing at its core are client-side validation and a rich JSP tag library. You can solve #1 with Commons Validator and #2 with JSP 2.0 Tag files - neither of which are distributed with Spring. I can understand the lack of JSP tags b/c the current tags allow you to do WSIWIG editing (ala Tapestry) and also you get full control over the HTML. If I were able to make the leap to JSP 2.0, I would probably choose Spring over WebWork and Struts. It's easy to test and easy to work with. I just wish there was a way to have a parent class for your Controllers and SimpleFormControllers. A common base class in a web framework controllers is something I've found useful. I like all the ones I wrote about in the comparison and I will continue to use them all. I think Spring is better than Struts, but on par with WebWork. I just wish Spring had easier ways to do <select>s and multi-select <select>s. You can't really compare Spring MVC to Tapestry/JSF because it's a different type of development (request-based vs. component/event). I would recommend starting a new project with any of these 5 frameworks. Matt Ernesto Echeverria wrote: > well yes, Matt where did you leave spring? > > Tom K wrote: > >> Very interesting pdf presentation on the comparisons of MVC >> frameworks. What makes it interesting is the question “Which would I >> choose?” since Matt is writing a book on Spring (Spring Live). >> https://equinox.dev.java.net/framework-comparison/WebFrameworks.pdf > |
|
From: <al...@jt...> - 2004-11-26 23:41:53
|
<html><head>
<style>
.white { color:#FFFFFF }.index { background-color:#FFFFFF }.index-passed { =
color:#004400 }.index-failed { color:#FF0000; font-weight:bold }.index-head=
er { font-weight:bold }.link { font-family:arial,helvetica,sans-serif; font=
-size:10pt; color:#FFFFFF; text-decoration:none; }.tab-table { margin: 0em =
0em 0.5em 0em; }.tabs { font-family:arial,helvetica,sans-serif; font-size:8=
pt; color:#000000; font-weight:bold; padding: 0em 2em; background-color:#EE=
EEEE; }.tabs-link { color:#000000; text-decoration:none; }.tabs-link:visite=
d { color:#000000; text-decoration:none; }.tabs-selected { font-family:aria=
l,helvetica,sans-serif; font-size:8pt; color:#000000; font-weight:bold; pad=
ding: 0em 2em; }.tabs-selected { border: inset; }.header-title { font-famil=
y:arial,helvetica,sans-serif; font-size:12pt; color:#000000; font-weight:bo=
ld; }.header-label { font-weight:bold; }.header-data { font-family:arial,he=
lvetica,sans-serif; font-size:10pt; color:#000000; }.modifications-data { f=
ont-family:arial,helvetica,sans-serif; font-size:8pt; color:#000000; }.modi=
fications-sectionheader { background-color:#000066; font-family:arial,helve=
tica,sans-serif; font-size:10pt; color:#FFFFFF; }.modifications-oddrow { ba=
ckground-color:#CCCCCC }.modifications-evenrow { background-color:#FFFFCC }=
.changelists-oddrow { background-color:#CCCCCC }.changelists-evenrow { back=
ground-color:#FFFFCC }.changelists-file-spacer { background-color:#FFFFFF }=
.changelists-file-evenrow { background-color:#EEEEEE }.changelists-file-odd=
row { background-color:#FFFFEE }.changelists-file-header { background-color=
:#666666; font-family:arial,helvetica,sans-serif; font-size:8pt; color:#FFF=
FFF; }.compile-data { font-family:arial,helvetica,sans-serif; font-size:8pt=
; color:#000000; }.compile-error-data { font-family:arial,helvetica,sans-se=
rif; font-size:8pt; color:#FF0000; }.compile-warn-data { font-family:arial,=
helvetica,sans-serif; font-size:8pt; color:#CC9900; }.compile-sectionheader=
{ background-color:#000066; font-family:arial,helvetica,sans-serif; font-s=
ize:10pt; color:#FFFFFF; }.distributables-data { font-family:arial,helvetic=
a,sans-serif; font-size:8pt; color:#000000; }.distributables-sectionheader =
{ background-color:#000066; font-family:arial,helvetica,sans-serif; font-si=
ze:10pt; color:#FFFFFF; }.distributables-oddrow { background-color:#CCCCCC =
}.unittests-sectionheader { background-color:#000066; font-family:arial,hel=
vetica,sans-serif; font-size:10pt; color:#FFFFFF; }.unittests-oddrow { back=
ground-color:#CCCCCC }.unittests-data { font-family:arial,helvetica,sans-se=
rif; font-size:8pt; color:#000000; }.unittests-error { font-family:arial,he=
lvetica,sans-serif; font-size:8pt; color:#901090; }.unittests-failure { fon=
t-family:arial,helvetica,sans-serif; font-size:8pt; color:#FF0000; }.checks=
tyle-oddrow { background-color:#CCCCCC }.checkstyle-data { font-family:aria=
l,helvetica,sans-serif; font-size:8pt; color:#000000; }.checkstyle-sectionh=
eader { background-color:#000066; font-family:arial,helvetica,sans-serif; f=
ont-size:10pt; color:#FFFFFF; }
</style>
</head><body>
<p>
<table width=3D"98%" border=3D"0" cellspacing=3D"0" cellpadding=3D"2" align=
=3D"center"><tr><td class=3D"header-title">BUILD COMPLETE - =
build.157</td></tr><tr><td class=3D"header-data"><span class=
=3D"header-label">Date of build: </span>11/27/2004 00:16:45</td></tr><=
tr><td class=3D"header-data"><span class=3D"header-label">Time to build:&nb=
sp;</span>23 minutes 19 seconds</td></tr><tr><td class=3D"header-data"><spa=
n class=3D"header-label">Last changed: </span>11/26/2004 11:03:41</td>=
</tr><tr><td class=3D"header-data"><span class=3D"header-label">Last log en=
try: </span>automatically register a default ResourceArrayPropertyEdit=
or</td></tr></table><p>
<p>
<p>
<table xmlns=3D"http://www.w3.org/TR/html4/strict.dtd" width=3D"98%" border=
=3D"0" cellspacing=3D"0" cellpadding=3D"2" align=3D"center"><tr><td class=
=3D"compile-sectionheader"> Errors/Warnings: (=
6) </td></tr><tr><td><pre class=3D"compile-data">Note: S=
ome input files use or override a deprecated API.<br class=3D"none"/>Note: =
Recompile with -deprecation for details.<br class=3D"none"/>Note: /jteam/bu=
ild2/checkout/spring/spring/mock/org/springframework/mock/web/MockHttpSessi=
on.java uses or overrides a deprecated API.<br class=3D"none"/>Note: Recomp=
ile with -deprecation for details.<br class=3D"none"/>Note: Some input file=
s use or override a deprecated API.<br class=3D"none"/>Note: Recompile with=
-deprecation for details.<br class=3D"none"/></pre></td></tr></table><p>
<table xmlns=3D"http://www.w3.org/TR/html4/strict.dtd" width=3D"98%" border=
=3D"0" cellspacing=3D"0" cellpadding=3D"2" align=3D"center"><tr><td class=
=3D"compile-sectionheader"> Javadoc Errors/War=
nings: (23) </td></tr><tr><td><pre class=3D"compile-data=
">/jteam/build2/checkout/spring/spring/src/org/springframework/jdbc/support=
/lob/OracleLobHandler.java:76: warning - Tag @see: reference not found: ora=
cle.sql.BLOB<br/>/jteam/build2/checkout/spring/spring/src/org/springframewo=
rk/jdbc/support/lob/OracleLobHandler.java:76: warning - Tag @see: reference=
not found: oracle.sql.CLOB<br/>/jteam/build2/checkout/spring/spring/src/or=
g/springframework/jdbc/support/lob/OracleLobHandler.java:115: warning - Tag=
@see: reference not found: oracle.sql.BLOB#DURATION_SESSION<br/>/jteam/bui=
ld2/checkout/spring/spring/src/org/springframework/jdbc/support/lob/OracleL=
obHandler.java:115: warning - Tag @see: reference not found: oracle.sql.BLO=
B#MODE_READWRITE<br/>/jteam/build2/checkout/spring/spring/src/org/springfra=
mework/jdbc/support/lob/OracleLobHandler.java:115: warning - Tag @see: refe=
rence not found: oracle.sql.CLOB#DURATION_SESSION<br/>/jteam/build2/checkou=
t/spring/spring/src/org/springframework/jdbc/support/lob/OracleLobHandler.j=
ava:115: warning - Tag @see: reference not found: oracle.sql.CLOB#MODE_READ=
WRITE<br/>/jteam/build2/checkout/spring/spring/src/org/springframework/jdbc=
/support/lob/OracleLobHandler.java:154: warning - Tag @see: reference not f=
ound: oracle.jdbc.OracleConnection<br/>/jteam/build2/checkout/spring/spring=
/src/org/springframework/jdbc/support/lob/OracleLobHandler.java:164: warnin=
g - Tag @see: reference not found: oracle.sql.BLOB#createTemporary<br/>/jte=
am/build2/checkout/spring/spring/src/org/springframework/jdbc/support/lob/O=
racleLobHandler.java:164: warning - Tag @see: reference not found: oracle.s=
ql.CLOB#createTemporary<br/>/jteam/build2/checkout/spring/spring/src/org/sp=
ringframework/jdbc/support/nativejdbc/JBossNativeJdbcExtractor.java:49: war=
ning - Tag @see: reference not found: org.jboss.resource.adapter.jdbc.Wrapp=
edConnection#getUnderlyingConnection<br/>/jteam/build2/checkout/spring/spri=
ng/src/org/springframework/jdbc/support/nativejdbc/JBossNativeJdbcExtractor=
.java:49: warning - Tag @see: reference not found: org.jboss.resource.adapt=
er.jdbc.WrappedStatement#getUnderlyingStatement<br/>/jteam/build2/checkout/=
spring/spring/src/org/springframework/jdbc/support/nativejdbc/JBossNativeJd=
bcExtractor.java:49: warning - Tag @see: reference not found: org.jboss.res=
ource.adapter.jdbc.WrappedResultSet#getUnderlyingResultSet<br/>/jteam/build=
2/checkout/spring/spring/src/org/springframework/jdbc/support/nativejdbc/We=
bLogicNativeJdbcExtractor.java:45: warning - Tag @see: reference not found:=
weblogic.jdbc.extensions.WLConnection#getVendorConnection<br/>/jteam/build=
2/checkout/spring/spring/src/org/springframework/jdbc/support/nativejdbc/We=
bSphereNativeJdbcExtractor.java:34: warning - Tag @see: reference not found=
: com.ibm.ws.rsadapter.jdbc.WSJdbcConnection<br/>/jteam/build2/checkout/spr=
ing/spring/src/org/springframework/jdbc/support/nativejdbc/WebSphereNativeJ=
dbcExtractor.java:34: warning - Tag @see: reference not found: com.ibm.ws.r=
sadapter.jdbc.WSJdbcUtil#getNativeConnection<br/>/jteam/build2/checkout/spr=
ing/spring/src/org/springframework/jdbc/support/nativejdbc/WebSphereNativeJ=
dbcExtractor.java:34: warning - Tag @see: reference not found: com.ibm.ejs.=
cm.proxy.ConnectionProxy#getPhysicalConnection<br/>/jteam/build2/checkout/s=
pring/spring/src/org/springframework/orm/hibernate/SessionHolder.java:41: w=
arning - Tag @see: reference not found: HibernateTransactionObject<br/>/jte=
am/build2/checkout/spring/spring/src/org/springframework/transaction/jta/We=
bLogicJtaTransactionManager.java:67: warning - Tag @see: reference not foun=
d: weblogic.transaction.TransactionManager#forceResume<br/>/jteam/build2/ch=
eckout/spring/spring/src/org/springframework/transaction/jta/WebLogicServer=
TransactionManagerFactoryBean.java:45: warning - Tag @see: reference not fo=
und: weblogic.transaction.TxHelper#getTransactionManager<br/>/jteam/build2/=
checkout/spring/spring/src/org/springframework/transaction/jta/WebSphereTra=
nsactionManagerFactoryBean.java:47: warning - Tag @see: reference not found=
: com.ibm.ws.Transaction.TransactionManagerFactory#getTransactionManager<br=
/>/jteam/build2/checkout/spring/spring/src/org/springframework/transaction/=
jta/WebSphereTransactionManagerFactoryBean.java:47: warning - Tag @see: ref=
erence not found: com.ibm.ejs.jts.jta.JTSXA#getTransactionManager<br/>/jtea=
m/build2/checkout/spring/spring/src/org/springframework/transaction/jta/Web=
SphereTransactionManagerFactoryBean.java:47: warning - Tag @see: reference =
not found: com.ibm.ejs.jts.jta.TransactionManagerFactory#getTransactionMana=
ger<br/>/jteam/build2/checkout/spring/spring/src/org/springframework/web/se=
rvlet/handler/metadata/PathMap.java:31: warning - @@org.apache.commons.attr=
ibutes.Indexed() is an unknown tag.<br/></pre></td></tr></table><p>
<table width=3D"98%" border=3D"0" cellspacing=3D"0" cellpadding=3D"2" align=
=3D"center"><tr><td colspan=3D"4" class=3D"unittests-sectionheader"> =
Unit Tests: (2054) </td></tr><tr><td class=
=3D"unittests-data" colspan=3D"2"> All Tests Pas=
sed </td></tr><tr><td><table width=3D"98%" border=3D=
"0" cellspacing=3D"0" cellpadding=3D"2" align=3D"center"></table></td></tr>=
<tr></tr><tr><td colspan=3D"2"> </td></tr></table><p>
<table width=3D"98%" border=3D"0" cellspacing=3D"1" cellpadding=3D"2" align=
=3D"center"><tr><td colspan=3D"6" class=3D"modifications-sectionheader"> =
Modifications since last build: =
(16) </td></tr><tr class=3D"modifications-evenrow"><td =
class=3D"modifications-data">modified</td><td class=3D"modifications-data">=
jhoeller</td><td class=3D"modifications-data">src/org/springframework/beans=
/BeanWrapperImpl.java</td><td class=3D"modifications-data">automatically re=
gister a default ResourceArrayPropertyEditor</td></tr><tr class=3D"modifica=
tions-oddrow"><td class=3D"modifications-data">modified</td><td class=3D"mo=
difications-data">jhoeller</td><td class=3D"modifications-data">src/org/spr=
ingframework/web/servlet/view/jasperreports/AbstractJasperReportsView.java<=
/td><td class=3D"modifications-data">fixed "getReportData" implementation</=
td></tr><tr class=3D"modifications-evenrow"><td class=3D"modifications-data=
">modified</td><td class=3D"modifications-data">jhoeller</td><td class=3D"m=
odifications-data">src/org/springframework/remoting/rmi/CodebaseAwareObject=
InputStream.java</td><td class=3D"modifications-data">fixed javadoc referen=
ce</td></tr><tr class=3D"modifications-oddrow"><td class=3D"modifications-d=
ata">modified</td><td class=3D"modifications-data">jhoeller</td><td class=
=3D"modifications-data">src/org/springframework/orm/hibernate/HibernateTran=
sactionManager.java</td><td class=3D"modifications-data">do not pre-initial=
ize the SQLExceptionTranslator</td></tr><tr class=3D"modifications-evenrow"=
><td class=3D"modifications-data">modified</td><td class=3D"modifications-d=
ata">jhoeller</td><td class=3D"modifications-data">test/org/springframework=
/orm/hibernate/HibernateTransactionManagerTests.java</td><td class=3D"modif=
ications-data">do not pre-initialize the SQLExceptionTranslator</td></tr><t=
r class=3D"modifications-oddrow"><td class=3D"modifications-data">modified<=
/td><td class=3D"modifications-data">jhoeller</td><td class=3D"modification=
s-data">test/org/springframework/validation/DataBinderTests.java</td><td cl=
ass=3D"modifications-data">added "setIgnoreUnknownFields" method</td></tr><=
tr class=3D"modifications-evenrow"><td class=3D"modifications-data">modifie=
d</td><td class=3D"modifications-data">jhoeller</td><td class=3D"modificati=
ons-data">src/org/springframework/validation/DataBinder.java</td><td class=
=3D"modifications-data">added "setIgnoreUnknownFields" method</td></tr><tr =
class=3D"modifications-oddrow"><td class=3D"modifications-data">added</td><=
td class=3D"modifications-data">kdonald</td><td class=3D"modifications-data=
">sandbox/src/org/springframework/binding/support/AbstractBeanAccessor.java=
</td><td class=3D"modifications-data">initial cut powerful metadata driven =
bean binding api</td></tr><tr class=3D"modifications-evenrow"><td class=3D"=
modifications-data">added</td><td class=3D"modifications-data">kdonald</td>=
<td class=3D"modifications-data">sandbox/src/org/springframework/binding/su=
pport/DefaultBeanMetadata.java</td><td class=3D"modifications-data">initial=
cut powerful metadata driven bean binding api</td></tr><tr class=3D"modifi=
cations-oddrow"><td class=3D"modifications-data">added</td><td class=3D"mod=
ifications-data">kdonald</td><td class=3D"modifications-data">sandbox/src/o=
rg/springframework/binding/value/support/GrowableIndexAdapter.java</td><td =
class=3D"modifications-data">initial cut powerful metadata driven bean bind=
ing api</td></tr><tr class=3D"modifications-evenrow"><td class=3D"modificat=
ions-data">added</td><td class=3D"modifications-data">kdonald</td><td class=
=3D"modifications-data">sandbox/src/org/springframework/binding/value/suppo=
rt/LazyCollectionInitializer.java</td><td class=3D"modifications-data">init=
ial cut powerful metadata driven bean binding api</td></tr><tr class=3D"mod=
ifications-oddrow"><td class=3D"modifications-data">added</td><td class=3D"=
modifications-data">kdonald</td><td class=3D"modifications-data">sandbox/sr=
c/org/springframework/binding/value/support/MapKeyAdapter.java</td><td clas=
s=3D"modifications-data">initial cut powerful metadata driven bean binding =
api</td></tr><tr class=3D"modifications-evenrow"><td class=3D"modifications=
-data">added</td><td class=3D"modifications-data">kdonald</td><td class=3D"=
modifications-data">sandbox/src/org/springframework/binding/value/support/P=
ropertyValueGuard.java</td><td class=3D"modifications-data">initial cut pow=
erful metadata driven bean binding api</td></tr><tr class=3D"modifications-=
oddrow"><td class=3D"modifications-data">added</td><td class=3D"modificatio=
ns-data">kdonald</td><td class=3D"modifications-data">sandbox/src/org/sprin=
gframework/binding/BeanMetadata.java</td><td class=3D"modifications-data">i=
nitial cut powerful metadata driven bean binding api</td></tr><tr class=3D"=
modifications-evenrow"><td class=3D"modifications-data">added</td><td class=
=3D"modifications-data">kdonald</td><td class=3D"modifications-data">sandbo=
x/src/org/springframework/binding/PropertyAccessor.java</td><td class=3D"mo=
difications-data">initial cut powerful metadata driven bean binding api</td=
></tr><tr class=3D"modifications-oddrow"><td class=3D"modifications-data">a=
dded</td><td class=3D"modifications-data">kdonald</td><td class=3D"modifica=
tions-data">sandbox/src/org/springframework/binding/PropertyMetadata.java</=
td><td class=3D"modifications-data">initial cut powerful metadata driven be=
an binding api</td></tr></table><p>
<table width=3D"98%" border=3D"0" cellspacing=3D"0" cellpadding=3D"2" align=
=3D"center"><tr><td class=3D"distributables-sectionheader"> =
Deployments by this build: (16) </td>=
</tr><tr><td class=3D"distributables-data">Building jar: /jteam/build2/chec=
kout/spring/spring/dist/spring-core.jar</td></tr><tr class=3D"distributable=
s-oddrow"><td class=3D"distributables-data">Building jar: /jteam/build2/che=
ckout/spring/spring/dist/spring-aop.jar</td></tr><tr><td class=3D"distribut=
ables-data">Building jar: /jteam/build2/checkout/spring/spring/dist/spring-=
context.jar</td></tr><tr class=3D"distributables-oddrow"><td class=3D"distr=
ibutables-data">Building jar: /jteam/build2/checkout/spring/spring/dist/spr=
ing-dao.jar</td></tr><tr><td class=3D"distributables-data">Building jar: /j=
team/build2/checkout/spring/spring/dist/spring-orm.jar</td></tr><tr class=
=3D"distributables-oddrow"><td class=3D"distributables-data">Building jar: =
/jteam/build2/checkout/spring/spring/dist/spring-web.jar</td></tr><tr><td c=
lass=3D"distributables-data">Building jar: /jteam/build2/checkout/spring/sp=
ring/dist/spring-webmvc.jar</td></tr><tr class=3D"distributables-oddrow"><t=
d class=3D"distributables-data">Building jar: /jteam/build2/checkout/spring=
/spring/dist/spring.jar</td></tr><tr><td class=3D"distributables-data">Buil=
ding jar: /jteam/build2/checkout/spring/spring/dist/spring-mock.jar</td></t=
r><tr class=3D"distributables-oddrow"><td class=3D"distributables-data">Bui=
lding war: /jteam/build2/checkout/spring/spring/autobuilds/apps/buildtest/d=
ist/buildtest.war</td></tr><tr><td class=3D"distributables-data">Building w=
ar: /jteam/build2/checkout/spring/spring/autobuilds/apps/buildtest/dist/bui=
ldtest.war</td></tr><tr class=3D"distributables-oddrow"><td class=3D"distri=
butables-data">Building war: /jteam/build2/checkout/spring/spring/autobuild=
s/apps/buildtest/dist/buildtest.war</td></tr><tr><td class=3D"distributable=
s-data">Building jar: /jteam/build2/checkout/spring/spring/autobuilds/apps/=
jpetstore/war/WEB-INF/lib/jpetstore.jar</td></tr><tr class=3D"distributable=
s-oddrow"><td class=3D"distributables-data">Building war: /jteam/build2/che=
ckout/spring/spring/autobuilds/apps/jpetstore/dist/jpetstore.war</td></tr><=
tr><td class=3D"distributables-data">Building jar: /jteam/build2/checkout/s=
pring/spring/autobuilds/apps/jpetstore/war/WEB-INF/lib/jpetstore.jar</td></=
tr><tr class=3D"distributables-oddrow"><td class=3D"distributables-data">Bu=
ilding war: /jteam/build2/checkout/spring/spring/autobuilds/apps/jpetstore/=
dist/jpetstore.war</td></tr></table>
</body></html> |
|
From: Jose N. <jos...@sk...> - 2004-11-25 21:31:44
|
This has been discussed this month at TSS http://theserverside.com/news/thread.tss?thread_id=3D29817 =20 Read how people reacted to that, interesting thread ... =20 Jos=E9. =20 -----Message d'origine----- De : spr...@li... [mailto:spr...@li...] De la part de Tom K Envoy=E9 : jeudi 25 novembre 2004 19:15 =C0 : spr...@li...; spr...@li... Objet : [Springframework-user] Interestng Comparison of MVC Frameworks =20 Very interesting pdf presentation on the comparisons of MVC frameworks. What makes it interesting is the question =93Which would I choose?=94 = since Matt is writing a book on Spring (Spring Live). https://equinox.dev.java.net/framework-comparison/WebFrameworks.pdf =20 =20 --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.764 / Virus Database: 511 - Release Date: 9/15/2004 |
|
From: Ernesto E. <ern...@ne...> - 2004-11-25 20:40:51
|
well yes, Matt where did you leave spring? Tom K wrote: > Very interesting pdf presentation on the comparisons of MVC frameworks. > What makes it interesting is the question “Which would I choose?” since > Matt is writing a book on Spring (Spring Live). > https://equinox.dev.java.net/framework-comparison/WebFrameworks.pdf > > > > > > > --- > Outgoing mail is certified Virus Free. > Checked by AVG anti-virus system (http://www.grisoft.com). > Version: 6.0.764 / Virus Database: 511 - Release Date: 9/15/2004 > |
|
From: Tom K <tk...@co...> - 2004-11-25 18:17:31
|
Very interesting pdf presentation on the comparisons of MVC frameworks. What makes it interesting is the question =93Which would I choose?=94 = since Matt is writing a book on Spring (Spring Live). HYPERLINK "https://equinox.dev.java.net/framework-comparison/WebFrameworks.pdf"htt ps://equinox.dev.java.net/framework-comparison/WebFrameworks.pdf =20 =20 --- Outgoing mail is certified Virus Free. Checked by AVG anti-virus system (http://www.grisoft.com). Version: 6.0.764 / Virus Database: 511 - Release Date: 9/15/2004 =20 |
|
From: Steven D. <ste...@gm...> - 2004-11-25 18:01:39
|
Hi, I'm wondering if there is any documentation on use cases where JMS and JDBC transactions are mixed without the use of XA transactions? There's a lot to say for using XA when combining messaging and database persistence, but there's also a lot against it. I think the pro's for using XA are well understood, so I'll focus on the con's that are obvious to me: + you'll need a reliable global transaction broker, which means the money you'd be spending on the license of such a product could get you a very nice brand new car. + setting up, deploying and maintaining a system that uses XA transactions is non-trivial. + what database are you going to use? MaxDB? How well tested is its XA support? If MaxDB is not sufficiently stable, the only option left is Oracle. Another very nice brand new car. It's not that I want to get XA deliverables for free, I only want to understand if it's possible to setup two use cases with local JMS and JDBC transactions: receive a message, process it and update the database is the first one, send a message and update the database is the second. Thanks for your feedback Kind regards Steven Devijver |
|
From: <al...@jt...> - 2004-11-23 23:42:34
|
<html><head>
<style>
.white { color:#FFFFFF }.index { background-color:#FFFFFF }.index-passed { =
color:#004400 }.index-failed { color:#FF0000; font-weight:bold }.index-head=
er { font-weight:bold }.link { font-family:arial,helvetica,sans-serif; font=
-size:10pt; color:#FFFFFF; text-decoration:none; }.tab-table { margin: 0em =
0em 0.5em 0em; }.tabs { font-family:arial,helvetica,sans-serif; font-size:8=
pt; color:#000000; font-weight:bold; padding: 0em 2em; background-color:#EE=
EEEE; }.tabs-link { color:#000000; text-decoration:none; }.tabs-link:visite=
d { color:#000000; text-decoration:none; }.tabs-selected { font-family:aria=
l,helvetica,sans-serif; font-size:8pt; color:#000000; font-weight:bold; pad=
ding: 0em 2em; }.tabs-selected { border: inset; }.header-title { font-famil=
y:arial,helvetica,sans-serif; font-size:12pt; color:#000000; font-weight:bo=
ld; }.header-label { font-weight:bold; }.header-data { font-family:arial,he=
lvetica,sans-serif; font-size:10pt; color:#000000; }.modifications-data { f=
ont-family:arial,helvetica,sans-serif; font-size:8pt; color:#000000; }.modi=
fications-sectionheader { background-color:#000066; font-family:arial,helve=
tica,sans-serif; font-size:10pt; color:#FFFFFF; }.modifications-oddrow { ba=
ckground-color:#CCCCCC }.modifications-evenrow { background-color:#FFFFCC }=
.changelists-oddrow { background-color:#CCCCCC }.changelists-evenrow { back=
ground-color:#FFFFCC }.changelists-file-spacer { background-color:#FFFFFF }=
.changelists-file-evenrow { background-color:#EEEEEE }.changelists-file-odd=
row { background-color:#FFFFEE }.changelists-file-header { background-color=
:#666666; font-family:arial,helvetica,sans-serif; font-size:8pt; color:#FFF=
FFF; }.compile-data { font-family:arial,helvetica,sans-serif; font-size:8pt=
; color:#000000; }.compile-error-data { font-family:arial,helvetica,sans-se=
rif; font-size:8pt; color:#FF0000; }.compile-warn-data { font-family:arial,=
helvetica,sans-serif; font-size:8pt; color:#CC9900; }.compile-sectionheader=
{ background-color:#000066; font-family:arial,helvetica,sans-serif; font-s=
ize:10pt; color:#FFFFFF; }.distributables-data { font-family:arial,helvetic=
a,sans-serif; font-size:8pt; color:#000000; }.distributables-sectionheader =
{ background-color:#000066; font-family:arial,helvetica,sans-serif; font-si=
ze:10pt; color:#FFFFFF; }.distributables-oddrow { background-color:#CCCCCC =
}.unittests-sectionheader { background-color:#000066; font-family:arial,hel=
vetica,sans-serif; font-size:10pt; color:#FFFFFF; }.unittests-oddrow { back=
ground-color:#CCCCCC }.unittests-data { font-family:arial,helvetica,sans-se=
rif; font-size:8pt; color:#000000; }.unittests-error { font-family:arial,he=
lvetica,sans-serif; font-size:8pt; color:#901090; }.unittests-failure { fon=
t-family:arial,helvetica,sans-serif; font-size:8pt; color:#FF0000; }.checks=
tyle-oddrow { background-color:#CCCCCC }.checkstyle-data { font-family:aria=
l,helvetica,sans-serif; font-size:8pt; color:#000000; }.checkstyle-sectionh=
eader { background-color:#000066; font-family:arial,helvetica,sans-serif; f=
ont-size:10pt; color:#FFFFFF; }
</style>
</head><body>
<p>
<table width=3D"98%" border=3D"0" cellspacing=3D"0" cellpadding=3D"2" align=
=3D"center"><tr><td class=3D"header-title">BUILD COMPLETE - =
build.156</td></tr><tr><td class=3D"header-data"><span class=
=3D"header-label">Date of build: </span>11/24/2004 00:15:59</td></tr><=
tr><td class=3D"header-data"><span class=3D"header-label">Time to build:&nb=
sp;</span>23 minutes 45 seconds</td></tr><tr><td class=3D"header-data"><spa=
n class=3D"header-label">Last changed: </span>11/23/2004 14:53:34</td>=
</tr><tr><td class=3D"header-data"><span class=3D"header-label">Last log en=
try: </span>fixed concurrent modification bug</td></tr></table><p>
<p>
<p>
<table xmlns=3D"http://www.w3.org/TR/html4/strict.dtd" width=3D"98%" border=
=3D"0" cellspacing=3D"0" cellpadding=3D"2" align=3D"center"><tr><td class=
=3D"compile-sectionheader"> Errors/Warnings: (=
6) </td></tr><tr><td><pre class=3D"compile-data">Note: S=
ome input files use or override a deprecated API.<br class=3D"none"/>Note: =
Recompile with -deprecation for details.<br class=3D"none"/>Note: /jteam/bu=
ild2/checkout/spring/spring/mock/org/springframework/mock/web/MockHttpSessi=
on.java uses or overrides a deprecated API.<br class=3D"none"/>Note: Recomp=
ile with -deprecation for details.<br class=3D"none"/>Note: Some input file=
s use or override a deprecated API.<br class=3D"none"/>Note: Recompile with=
-deprecation for details.<br class=3D"none"/></pre></td></tr></table><p>
<table xmlns=3D"http://www.w3.org/TR/html4/strict.dtd" width=3D"98%" border=
=3D"0" cellspacing=3D"0" cellpadding=3D"2" align=3D"center"><tr><td class=
=3D"compile-sectionheader"> Javadoc Errors/War=
nings: (25) </td></tr><tr><td><pre class=3D"compile-data=
">/jteam/build2/checkout/spring/spring/src/org/springframework/remoting/rmi=
/CodebaseAwareObjectInputStream.java:64: warning - Tag @see: missing #: "ja=
va.io.ObjectInputStream(java.io.InputStream)"<br/>/jteam/build2/checkout/sp=
ring/spring/src/org/springframework/remoting/rmi/CodebaseAwareObjectInputSt=
ream.java:64: warning - Tag @see: can't find java.io.ObjectInputStream(java=
.io.InputStream) in org.springframework.remoting.rmi.CodebaseAwareObjectInp=
utStream<br/>/jteam/build2/checkout/spring/spring/src/org/springframework/j=
dbc/support/lob/OracleLobHandler.java:76: warning - Tag @see: reference not=
found: oracle.sql.BLOB<br/>/jteam/build2/checkout/spring/spring/src/org/sp=
ringframework/jdbc/support/lob/OracleLobHandler.java:76: warning - Tag @see=
: reference not found: oracle.sql.CLOB<br/>/jteam/build2/checkout/spring/sp=
ring/src/org/springframework/jdbc/support/lob/OracleLobHandler.java:115: wa=
rning - Tag @see: reference not found: oracle.sql.BLOB#DURATION_SESSION<br/=
>/jteam/build2/checkout/spring/spring/src/org/springframework/jdbc/support/=
lob/OracleLobHandler.java:115: warning - Tag @see: reference not found: ora=
cle.sql.BLOB#MODE_READWRITE<br/>/jteam/build2/checkout/spring/spring/src/or=
g/springframework/jdbc/support/lob/OracleLobHandler.java:115: warning - Tag=
@see: reference not found: oracle.sql.CLOB#DURATION_SESSION<br/>/jteam/bui=
ld2/checkout/spring/spring/src/org/springframework/jdbc/support/lob/OracleL=
obHandler.java:115: warning - Tag @see: reference not found: oracle.sql.CLO=
B#MODE_READWRITE<br/>/jteam/build2/checkout/spring/spring/src/org/springfra=
mework/jdbc/support/lob/OracleLobHandler.java:154: warning - Tag @see: refe=
rence not found: oracle.jdbc.OracleConnection<br/>/jteam/build2/checkout/sp=
ring/spring/src/org/springframework/jdbc/support/lob/OracleLobHandler.java:=
164: warning - Tag @see: reference not found: oracle.sql.BLOB#createTempora=
ry<br/>/jteam/build2/checkout/spring/spring/src/org/springframework/jdbc/su=
pport/lob/OracleLobHandler.java:164: warning - Tag @see: reference not foun=
d: oracle.sql.CLOB#createTemporary<br/>/jteam/build2/checkout/spring/spring=
/src/org/springframework/jdbc/support/nativejdbc/JBossNativeJdbcExtractor.j=
ava:49: warning - Tag @see: reference not found: org.jboss.resource.adapter=
.jdbc.WrappedConnection#getUnderlyingConnection<br/>/jteam/build2/checkout/=
spring/spring/src/org/springframework/jdbc/support/nativejdbc/JBossNativeJd=
bcExtractor.java:49: warning - Tag @see: reference not found: org.jboss.res=
ource.adapter.jdbc.WrappedStatement#getUnderlyingStatement<br/>/jteam/build=
2/checkout/spring/spring/src/org/springframework/jdbc/support/nativejdbc/JB=
ossNativeJdbcExtractor.java:49: warning - Tag @see: reference not found: or=
g.jboss.resource.adapter.jdbc.WrappedResultSet#getUnderlyingResultSet<br/>/=
jteam/build2/checkout/spring/spring/src/org/springframework/jdbc/support/na=
tivejdbc/WebLogicNativeJdbcExtractor.java:45: warning - Tag @see: reference=
not found: weblogic.jdbc.extensions.WLConnection#getVendorConnection<br/>/=
jteam/build2/checkout/spring/spring/src/org/springframework/jdbc/support/na=
tivejdbc/WebSphereNativeJdbcExtractor.java:34: warning - Tag @see: referenc=
e not found: com.ibm.ws.rsadapter.jdbc.WSJdbcConnection<br/>/jteam/build2/c=
heckout/spring/spring/src/org/springframework/jdbc/support/nativejdbc/WebSp=
hereNativeJdbcExtractor.java:34: warning - Tag @see: reference not found: c=
om.ibm.ws.rsadapter.jdbc.WSJdbcUtil#getNativeConnection<br/>/jteam/build2/c=
heckout/spring/spring/src/org/springframework/jdbc/support/nativejdbc/WebSp=
hereNativeJdbcExtractor.java:34: warning - Tag @see: reference not found: c=
om.ibm.ejs.cm.proxy.ConnectionProxy#getPhysicalConnection<br/>/jteam/build2=
/checkout/spring/spring/src/org/springframework/orm/hibernate/SessionHolder=
.java:41: warning - Tag @see: reference not found: HibernateTransactionObje=
ct<br/>/jteam/build2/checkout/spring/spring/src/org/springframework/transac=
tion/jta/WebLogicJtaTransactionManager.java:67: warning - Tag @see: referen=
ce not found: weblogic.transaction.TransactionManager#forceResume<br/>/jtea=
m/build2/checkout/spring/spring/src/org/springframework/transaction/jta/Web=
LogicServerTransactionManagerFactoryBean.java:45: warning - Tag @see: refer=
ence not found: weblogic.transaction.TxHelper#getTransactionManager<br/>/jt=
eam/build2/checkout/spring/spring/src/org/springframework/transaction/jta/W=
ebSphereTransactionManagerFactoryBean.java:47: warning - Tag @see: referenc=
e not found: com.ibm.ws.Transaction.TransactionManagerFactory#getTransactio=
nManager<br/>/jteam/build2/checkout/spring/spring/src/org/springframework/t=
ransaction/jta/WebSphereTransactionManagerFactoryBean.java:47: warning - Ta=
g @see: reference not found: com.ibm.ejs.jts.jta.JTSXA#getTransactionManage=
r<br/>/jteam/build2/checkout/spring/spring/src/org/springframework/transact=
ion/jta/WebSphereTransactionManagerFactoryBean.java:47: warning - Tag @see:=
reference not found: com.ibm.ejs.jts.jta.TransactionManagerFactory#getTran=
sactionManager<br/>/jteam/build2/checkout/spring/spring/src/org/springframe=
work/web/servlet/handler/metadata/PathMap.java:31: warning - @@org.apache.c=
ommons.attributes.Indexed() is an unknown tag.<br/></pre></td></tr></table>=
<p>
<table width=3D"98%" border=3D"0" cellspacing=3D"0" cellpadding=3D"2" align=
=3D"center"><tr><td colspan=3D"4" class=3D"unittests-sectionheader"> =
Unit Tests: (2053) </td></tr><tr><td class=
=3D"unittests-data" colspan=3D"2"> All Tests Pas=
sed </td></tr><tr><td><table width=3D"98%" border=3D=
"0" cellspacing=3D"0" cellpadding=3D"2" align=3D"center"></table></td></tr>=
<tr></tr><tr><td colspan=3D"2"> </td></tr></table><p>
<table width=3D"98%" border=3D"0" cellspacing=3D"1" cellpadding=3D"2" align=
=3D"center"><tr><td colspan=3D"6" class=3D"modifications-sectionheader"> =
Modifications since last build: =
(1) </td></tr><tr class=3D"modifications-evenrow"><td c=
lass=3D"modifications-data">modified</td><td class=3D"modifications-data">k=
donald</td><td class=3D"modifications-data">sandbox/src/org/springframework=
/binding/value/support/AbstractValueModel.java</td><td class=3D"modificatio=
ns-data">fixed concurrent modification bug</td></tr></table><p>
<table width=3D"98%" border=3D"0" cellspacing=3D"0" cellpadding=3D"2" align=
=3D"center"><tr><td class=3D"distributables-sectionheader"> =
Deployments by this build: (16) </td>=
</tr><tr><td class=3D"distributables-data">Building jar: /jteam/build2/chec=
kout/spring/spring/dist/spring-core.jar</td></tr><tr class=3D"distributable=
s-oddrow"><td class=3D"distributables-data">Building jar: /jteam/build2/che=
ckout/spring/spring/dist/spring-aop.jar</td></tr><tr><td class=3D"distribut=
ables-data">Building jar: /jteam/build2/checkout/spring/spring/dist/spring-=
context.jar</td></tr><tr class=3D"distributables-oddrow"><td class=3D"distr=
ibutables-data">Building jar: /jteam/build2/checkout/spring/spring/dist/spr=
ing-dao.jar</td></tr><tr><td class=3D"distributables-data">Building jar: /j=
team/build2/checkout/spring/spring/dist/spring-orm.jar</td></tr><tr class=
=3D"distributables-oddrow"><td class=3D"distributables-data">Building jar: =
/jteam/build2/checkout/spring/spring/dist/spring-web.jar</td></tr><tr><td c=
lass=3D"distributables-data">Building jar: /jteam/build2/checkout/spring/sp=
ring/dist/spring-webmvc.jar</td></tr><tr class=3D"distributables-oddrow"><t=
d class=3D"distributables-data">Building jar: /jteam/build2/checkout/spring=
/spring/dist/spring.jar</td></tr><tr><td class=3D"distributables-data">Buil=
ding jar: /jteam/build2/checkout/spring/spring/dist/spring-mock.jar</td></t=
r><tr class=3D"distributables-oddrow"><td class=3D"distributables-data">Bui=
lding war: /jteam/build2/checkout/spring/spring/autobuilds/apps/buildtest/d=
ist/buildtest.war</td></tr><tr><td class=3D"distributables-data">Building w=
ar: /jteam/build2/checkout/spring/spring/autobuilds/apps/buildtest/dist/bui=
ldtest.war</td></tr><tr class=3D"distributables-oddrow"><td class=3D"distri=
butables-data">Building war: /jteam/build2/checkout/spring/spring/autobuild=
s/apps/buildtest/dist/buildtest.war</td></tr><tr><td class=3D"distributable=
s-data">Building jar: /jteam/build2/checkout/spring/spring/autobuilds/apps/=
jpetstore/war/WEB-INF/lib/jpetstore.jar</td></tr><tr class=3D"distributable=
s-oddrow"><td class=3D"distributables-data">Building war: /jteam/build2/che=
ckout/spring/spring/autobuilds/apps/jpetstore/dist/jpetstore.war</td></tr><=
tr><td class=3D"distributables-data">Building jar: /jteam/build2/checkout/s=
pring/spring/autobuilds/apps/jpetstore/war/WEB-INF/lib/jpetstore.jar</td></=
tr><tr class=3D"distributables-oddrow"><td class=3D"distributables-data">Bu=
ilding war: /jteam/build2/checkout/spring/spring/autobuilds/apps/jpetstore/=
dist/jpetstore.war</td></tr></table>
</body></html> |
|
From: <jue...@we...> - 2004-11-23 10:57:39
|
Yes, I've committed it yesterday evening. It usually takes a while until = a change is visible in public CVS... =20 Juergen =20 ________________________________ Von: spr...@li... im Auftrag = von Roberto Cosenza Gesendet: Di 23.11.2004 10:06 An: spr...@li... Betreff: Re: [Springframework-developer] VelocityContext and HttpRequest Hi J=FCrgen. I can't see this modification in cvs yet. Did you commit it? /rob j=FCrgen h=F6ller [werk3AT] wrote: >Indeed, this doesn't work if there's no Errors instance in the model. = The fallback of looking for the plain command object always looks for a = request attribute. I've just changed this to first check the model map = if any; it should work with Velocity and FreeMarker too now. > >Thanks for spotting this! > >Juergen > >=20 > ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://productguide.itmanagersjournal.com/ _______________________________________________ Springframework-developer mailing list Spr...@li... https://lists.sourceforge.net/lists/listinfo/springframework-developer |
|
From: Darren D. <da...@da...> - 2004-11-23 10:48:19
|
On Tue, November 23, 2004 10:14, Rob Harrop said: > I think that file got corrupted in CVS. Jurgen uploaded it again I thi= nk. Thanks Rob, I'll give 'em another go. Was just a bit worried it may have= been a Win32/UNIX file-system issue or something.. --=20 Darren Davison Public Key: #DD356B0D |