User MatthieuF - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T16:06:29Zhttp://stackoverflow.com/feeds/user/1836http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/58940/access-to-result-sets-from-within-stored-procedures-transact-sql-sql-server4Access to Result sets from within Stored procedures Transact-SQL SQL ServerMatthieuF2008-09-12T13:24:24Z2009-11-30T15:18:45Z
<p>I'm using SQL Server 2005, and I would like to know how to access different result sets from within transact-sql. The following stored procedure returns two result sets, how do I access them from, for example, another stored procedure?</p>
<pre><code>CREATE PROCEDURE getOrder (@orderId as numeric) AS
BEGIN
select order_address, order_number from order_table where order_id = @orderId
select item, number_of_items, cost from order_line where order_id = @orderId
END
</code></pre>
<p>I need to be able to iterate through both result sets individually.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1804042/spring-batch-java-io-ioexception-stream-closed-exception-when-combining-multire0Spring Batch: java.io.IOException: Stream closed exception when combining MultiResourceItemWriter and FlatFileItemWriterMatthieuF2009-11-26T14:39:55Z2009-11-30T12:31:01Z
<p>I have a Spring Batch process which takes a set of rows in the database and creates a number of flat files from those rows, 10 rows per file. To do this, I've created a Spring Batch process, similar to this:</p>
<pre><code><batch:job id="springTest" job-repository="jobRepository" restartable="true">
<batch:step id="test">
<batch:tasklet>
<batch:chunk reader="itemReader" writer="multipleItemWriter" commit-interval="2" />
</batch:tasklet>
</batch:step>
</batch:job>
<bean id="itemReader" class="org.springframework.batch.item.file.FlatFileItemReader">
<property name="resource" value="file:/temp/temp-input.txt" />
<property name="lineMapper">
<bean class="org.springframework.batch.item.file.mapping.PassThroughLineMapper" />
</property>
</bean>
<bean id="multipleItemWriter" class="org.springframework.batch.item.file.MultiResourceItemWriter">
<property name="resource" value="file:/temp/temp-out" />
<property name="itemCountLimitPerResource" value="2" />
<property name="delegate">
<bean id="itemWriter" class="org.springframework.batch.item.file.FlatFileItemWriter">
<property name="lineAggregator">
<bean class="org.springframework.batch.item.file.transform.PassThroughLineAggregator" />
</property>
<property name="encoding" value="utf-8" />
<property name="headerCallback" ref="headerFooter" />
<property name="footerCallback" ref="headerFooter" />
</bean>
</property>
</bean>
<bean id="headerFooter" class="uk.co.farwell.spring.HeaderFooterCallback" />
</code></pre>
<p>The above example reads from a flat file and outputs to a flat file (to show the problem). Note the commit-interval=2 in the chunk, and the itemCountLimitPerResource=2 in the MultiResourceItemWriter.</p>
<p>The HeaderFooterCallback does the following:</p>
<pre><code>public void writeHeader(Writer writer) throws IOException {
writer.write("file header\n");
}
public void writeFooter(Writer writer) throws IOException {
writer.write("file footer\n");
}
</code></pre>
<p>I need to be able to specify exactly the number of lines which appear in the file.</p>
<p>For the following input file:</p>
<pre><code>foo1
foo2
foo3
</code></pre>
<p>I would expect two files on output,</p>
<p><hr></p>
<p>out.1:</p>
<pre><code>file header
foo1
foo2
file footer
</code></pre>
<p>out.2:</p>
<pre><code>file header
foo3
file footer
</code></pre>
<p>When I run with commit-interval=2, I get an exception:</p>
<pre><code>2009-11-26 15:32:46,734 ERROR .support.TransactionSynchronizationUtils - TransactionSynchronization.afterCompletion threw exception
org.springframework.batch.support.transaction.FlushFailedException: Could not write to output buffer
at org.springframework.batch.support.transaction.TransactionAwareBufferedWriter$1.afterCompletion(TransactionAwareBufferedWriter.java:71)
at org.springframework.transaction.support.TransactionSynchronizationUtils.invokeAfterCompletion(TransactionSynchronizationUtils.java:157)
at org.springframework.transaction.support.AbstractPlatformTransactionManager.invokeAfterCompletion(AbstractPlatformTransactionManager.java:974)
.
.
.
Caused by: java.io.IOException: Stream closed
at sun.nio.cs.StreamEncoder.ensureOpen(Unknown Source)
at sun.nio.cs.StreamEncoder.write(Unknown Source)
at sun.nio.cs.StreamEncoder.write(Unknown Source)
at java.io.Writer.write(Unknown Source)
at org.springframework.batch.support.transaction.TransactionAwareBufferedWriter$1.afterCompletion(TransactionAwareBufferedWriter.java:67).
</code></pre>
<p>I think this is a bug. Wierdly, the files are as follows:</p>
<p>out.1:</p>
<pre><code>file header
foo1
foo2
</code></pre>
<p>out.2:</p>
<pre><code>file footer
</code></pre>
<p>If I have two lines in the input file, everything works correctly, but more than two does not work. If I change the commit-interval to 200, then I get three lines in one file, which is not the behaviour wanted.</p>
<p>If someone could tell me if I'm doing something wrong, or if not how to get around the problem, I'd be very grateful.</p>
http://stackoverflow.com/questions/1804042/spring-batch-java-io-ioexception-stream-closed-exception-when-combining-multire/1807458#18074580Answer by MatthieuF for Spring Batch: java.io.IOException: Stream closed exception when combining MultiResourceItemWriter and FlatFileItemWriterMatthieuF2009-11-27T08:40:31Z2009-11-30T12:31:01Z<p>In fact, this is a bug. See <a href="http://jira.springframework.org/browse/BATCH-1452" rel="nofollow">http://jira.springframework.org/browse/BATCH-1452</a>.</p>
<p>The workaround, according to <a href="http://jira.springframework.org/secure/ViewProfile.jspa?name=david_syer" rel="nofollow">Dave Syer</a>, is:</p>
<blockquote>
<p>The IOException is nasty. A partial
workaround is to use the new
transactional property in
FlatFileItemWriter, setting it to
false (BATCH-1449). But then you lose
restartability (so if that's not an
issue you are good to go). I'll try
and fix it properly for 2.1.</p>
<p>Another workaround is to post process
the files in a separate step (and not
use the header/footer callbacks).</p>
<p>The counting issue (more than 2 items
per file) is really separate - the
multi-resource writer was never
designed to guarantee the precise
number of items per file, only to
spill over if the limit is breached.
You can open a JIRA for an enhancement
if you want, A workaround is to use
commit-interval="2" in your example
(or more generally a factor of the
desired file size).</p>
</blockquote>
http://stackoverflow.com/questions/1804995/how-to-deal-with-rapid-project-spec-changes-in-a-tight-deadline-scenario/1810938#18109380Answer by MatthieuF for How to deal with rapid project spec changes in a tight deadline scenario?MatthieuF2009-11-27T23:07:33Z2009-11-27T23:07:33Z<p>This is one of the major challenges you will face as a developer.</p>
<p>One good technique I've used in the past is to ask questions. When you get the specs, find something in them which needs clarification from the final users. This always slows things down, and raises the possibility in managers minds of risks.</p>
<p>Make sure that your project manager knows the risks involved in implementing late changes for a project.</p>
http://stackoverflow.com/questions/1771324/eclipse-as-an-ide-what-do-you-find-missing-as-a-beginner-in-java/1772115#17721154Answer by MatthieuF for Eclipse as an IDE - What do you find missing as a beginner in Java?MatthieuF2009-11-20T17:38:13Z2009-11-27T10:09:17Z<p>For me, most of the newbie problems in Eclipse come from one of it's strengths, its configurability & plugin structure.</p>
<p>When I need to change a property in Eclipse, I always seem to have to spend a few minutes working out where to change it. Example: changing the Java editor to insert 4 spaces instead of a tab. The search bar in the properties is always welcome :-)</p>
<p>That and the lack of documentation for some of the plugins always makes for fun when I'm setting up a project.</p>
<p>EDIT: You can always show the classes that implement an interface using ctrl-T.</p>
<p>One thing I would add is that when I have a complex project, I tend to use Refresh & Project->Rebuild All *a lot". And I use TortoiseSVN to maniuplate stuff outside of Eclipse, because a lot of times this is easier (some refactoring for instance). However, if I'm modifying the project outside of Eclipse, I *always" quit Eclipse, and do a full refresh and build when I restart it. Otherwise Eclipse gets very confused sometimes.</p>
http://stackoverflow.com/questions/1805923/incremental-deployment-of-java-web-applications/1806062#18060620Answer by MatthieuF for Incremental deployment of java web applicationsMatthieuF2009-11-26T23:08:25Z2009-11-26T23:08:25Z<p>We used to do this sort of thing all of the time. We worked in a bank, and there were sometimes changes to legal phrases or terms and conditions that needed to be changed today (or more usually yesterday).</p>
<p>We did two things to help us deploy quickly. We had a good change control and build process. We could change and deploy any version we liked. We also had a <em>good</em> test suite, with which we could test changes easily.</p>
<p>The second was more controversial. All of our html was deployed as separate files on the server. There was no WAR. Therefore, when the circumstances came up that we needed to change something textual quickly, we could do it. If java needed changing, we always did a FULL build and deploy.</p>
<p>This is not something I'd recommend, but it was good for our situation.</p>
<p>The point of a WAR is so that everything gets deployed at the same time. If you're using a WAR, that means you want it to be deployed all at once.</p>
<p>One suggestion is not to do such corrections so often (once a week?). Then you don't have so much pain.</p>
http://stackoverflow.com/questions/1782020/jasper-reporting-tutorial/1793429#17934291Answer by MatthieuF for Jasper Reporting TutorialMatthieuF2009-11-24T22:38:50Z2009-11-26T22:28:52Z<p>As it so happens, I'm in the process of writing a series of articles about Jasper, here is the first:</p>
<p><a href="http://randomallsorts.blogspot.com/2009/11/jasper-reports-getting-started.html" rel="nofollow">http://randomallsorts.blogspot.com/2009/11/jasper-reports-getting-started.html</a>
<a href="http://randomallsorts.blogspot.com/2009/11/jasper-reports-exploring-sample-reports.html" rel="nofollow">http://randomallsorts.blogspot.com/2009/11/jasper-reports-exploring-sample-reports.html</a></p>
http://stackoverflow.com/questions/1804029/compare-inner-join-and-outer-join-sql-statements/1804082#18040820Answer by MatthieuF for Compare inner join and outer join SQL statementsMatthieuF2009-11-26T14:45:00Z2009-11-26T21:03:18Z<p>See the following explanations from MSDN:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms190014.aspx" rel="nofollow">Using Inner Joins</a></p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms187518.aspx" rel="nofollow">Using Outer Joins</a></p>
http://stackoverflow.com/questions/1770076/log4j-strategies-for-creating-logger-instances/1793697#17936972Answer by MatthieuF for Log4J: Strategies for creating Logger instancesMatthieuF2009-11-24T23:30:36Z2009-11-24T23:30:36Z<p>As has been said by others, I would create a Logger per class:</p>
<p>private final static Logger LOGGER = Logger.getLogger(Foo.class);</p>
<p>However, I have found it useful in the past to have other information in the logger. For instance, if you have a web site, you could include the user ID in every log message. That way,, you can trace everything a user is doing (very useful for debugging problems etc).</p>
<p>The easiest way to do this is to use an MDC, but you can use a Logger created for each instance of the class with the name including the user ID.</p>
<p>Another advantage of using an MDC is if you use SL4J, you can change the settings depending upon the values in your MDC. So if you wish to log all activity for a particular user at DEBUG level, and leave all of the other users at ERROR, you can. You can also redirect different output to different places depending upon your MDC.</p>
<p>Some useful links:</p>
<p><a href="http://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/MDC.html" rel="nofollow">http://logging.apache.org/log4j/1.2/apidocs/org/apache/log4j/MDC.html</a></p>
<p><a href="http://www.slf4j.org/api/index.html?org/slf4j/MDC.html" rel="nofollow">http://www.slf4j.org/api/index.html?org/slf4j/MDC.html</a></p>
http://stackoverflow.com/questions/1782624/svn-configuration-issue/1782925#17829251Answer by MatthieuF for SVN Configuration issueMatthieuF2009-11-23T12:40:37Z2009-11-23T12:40:37Z<p>Does the answer to this question help?</p>
<p><a href="http://stackoverflow.com/questions/838392/svn-error-expected-fs-format-between-1-and-3-found-format-4">http://stackoverflow.com/questions/838392/svn-error-expected-fs-format-between-1-and-3-found-format-4</a></p>
http://stackoverflow.com/questions/1780016/caching-item-ids-in-a-memory-table-good-bad/1780378#17803780Answer by MatthieuF for Caching item IDs in a memory table - good/bad?MatthieuF2009-11-22T23:19:35Z2009-11-22T23:19:35Z<p>As has been said elsewhere, if your query is reused then you could have a performance boost. <strong>But your query must return the same results as well.</strong> If your dataset is not static, then you will have to redo the query anyway.</p>
<p>There are a lot of options to improve performance. If you have exhausted all of the options do with indexes, increasing hardware on the server, increasing the bandwidth of the network between your server and client(s), then you could explore some other options:</p>
<ul>
<li>cache the HTML for a request: note
that this will cache the results for
a search & the sort used; if the user
changes the order of one of the
columns, then you'll need to redo the
query (*)</li>
<li>cache the id's of the search, but not
the order by. More complex to handle,
but has the benefit that if the user
changes the column order, the query is still as fast. You can even pre-cache some common queries</li>
</ul>
<p>As always, the performance of your system depends upon a lot of factors. To really answer your question you need to measure the performance on your system. If you have a doubt, measure. I've found a few times that the performance gain is negligable.</p>
<p>You also have to take into account the complexity you're adding to the system by performance optmizations like this, and the flushing of the cache, what happens if data changes, how do you handle all of these problems.</p>
http://stackoverflow.com/questions/1654533/intelligent-file-search-for-windows-that-can-ignore-whitespace-and-search-in-code/1777067#17770671Answer by MatthieuF for Intelligent file search for windows that can ignore whitespace and search in code?MatthieuF2009-11-21T22:57:29Z2009-11-21T22:57:29Z<p>For my Windows desktop search, I use <a href="http://www.mythicsoft.com/agentransack/Page.aspx?page=home" rel="nofollow">Agent Ransack</a>. I use this as a replacement for the windows search.</p>
<p>You can use regular expressions, but there is a nice entry screen if you want to avoid entering them directly.</p>
http://stackoverflow.com/questions/1709046/why-does-ireport-keep-adding-tags-that-arent-supported-and-then-crashing/1777015#17770151Answer by MatthieuF for Why does iReport keep adding tags that aren't supported and then crashing?MatthieuF2009-11-21T22:32:40Z2009-11-21T22:47:04Z<p>I had this problem as well, but I changed the version I used back to 3.5.0 to match the version of jasper report server as well.</p>
<p>EDIT: In fact this is a known problem. The splitType functionality was introduced in 3.5.2, and this is incompatible with 3.5.0. You can see this in <a href="http://jasperforge.org/plugins/espforum/view.php?group_id=112&forumid=102&topicid=62989" rel="nofollow">the Jasper server forums</a>.</p>
<p>So your options are to use iReport 3.5.0 or to upgrade the jar jasperreports-3.5.0.jar to jasperreports-3.5.2.jar on the Tomcat server.</p>
http://stackoverflow.com/questions/1771638/print-jasper-report-without-pages/1773608#17736080Answer by MatthieuF for Print Jasper Report without pagesMatthieuF2009-11-20T22:21:25Z2009-11-20T22:21:25Z<p>I don't know if there an option to ignore pages, but you can change the page height to a very big number (10000)?</p>
<p>In the XML, set the pageHeight attribute to "10000", or similar.</p>
http://stackoverflow.com/questions/1772078/disabling-nul-termination-of-strings-in-gcc/1772216#17722160Answer by MatthieuF for Disabling NUL-termination of strings in GCCMatthieuF2009-11-20T17:53:26Z2009-11-20T17:53:26Z<p>I can't remember the details, but when I do</p>
<pre><code>char my_constant[5]
</code></pre>
<p>it is possible that it will reserve 8 bytes anyway, because some machines can't address the middle of a word.</p>
<p>It's nearly always best to leave this sort of thing to the compiler and let it handle the optmisation for you, unless there is a really really good reason to do so.</p>
http://stackoverflow.com/questions/1771950/use-of-vertical-whitespace/1772036#17720365Answer by MatthieuF for Use of Vertical WhitespaceMatthieuF2009-11-20T17:25:50Z2009-11-20T17:25:50Z<p>I think one of the most important things is to group a logical step together, such as:</p>
<pre><code>foo.setBar(1);
foo.setBar2(2);
foo.writeToDatabase();
bar.setBar(1)
bar.setBaz(2);
bar.writeToDatabase();
</code></pre>
<p>That way, the code is easier to read, and is more descriptive, for me anyway.</p>
http://stackoverflow.com/questions/726412/installing-hpricot-for-jruby2Installing hpricot for JRubyMatthieuF2009-04-07T15:46:17Z2009-11-19T18:48:29Z
<p>I'm trying to look at cucumber for Jruby on Rails. One of the pre-requesites is webrat which has as pre-requisite hpricot.</p>
<p>I've installed the gem with hpricot using:</p>
<p>gem install hpricot --source <a href="http://code.whytheluckystiff.net" rel="nofollow">http://code.whytheluckystiff.net</a> --version 0.6.1 --platform java</p>
<p>This installs the java version of hpricot. I add the hpricot_scan.jar to the CLASSPATH but when I run:</p>
<pre><code>cucumber features -n
</code></pre>
<p>I get the following output:</p>
<pre><code>HpricotScanService.java:931:in `hpricot_scan': java.lang.NoSuchMethodError:
org.jruby.runtime.builtin.IRubyObject.getInstanceVariable(Ljava/lang/String;)Lorg/jruby/runtime/builtin/IRubyObject;
from HpricotScanService.java:1324:in `__hpricot_scan'
from null:-1:in `call'
from InvocationCallback.java:67:in `execute'
from FullFunctionCallbackMethod.java:69:in `call'
from DynamicMethod.java:243:in `call'
from CachingCallSite.java:283:in `cacheAndCall'
from CachingCallSite.java:121:in `callBlock'
</code></pre>
<p>etc.</p>
<p>If I compile the HpricotScanService.java file and add the resulting .class file to the classpath, I get:</p>
<pre><code>Then I should see "Run"
private method `scan' called for Hpricot:Module (NoMethodError)
features/step_definitions/webrat_steps.rb:94:in `/^I should see "([^\"]*)"$/'
features/manage_activity.feature:9:in `Then I should see "Run"'
</code></pre>
<p>If I try to install later versions of the hpricot, then I get:</p>
<pre><code>ERROR: Failed to build gem native extension.
C:/Program Files/Ruby/jruby-1.2.0/bin/../bin/jruby.bat extconf.rb install hpricot --platform java
C:/Program Files/Ruby/jruby-1.2.0/bin/../lib/ruby/1.8/mkmf.rb:7: JRuby does not support native extensions. Check wiki.jruby.org for alternatives. (Not
ImplementedError)
from C:/Program Files/Ruby/jruby-1.2.0/bin/../lib/ruby/1.8/mkmf.rb:1:in `require'
from extconf.rb:1
</code></pre>
<p>Does anyone have any clues as to what I'm doing wrong/not doing/where I'm being stupid.?</p>
<p>Using Windows XP, JRuby 1.2.0</p>
http://stackoverflow.com/questions/310355/how-do-i-access-windows-event-viewer-log-data-from-java2How do I access Windows Event Viewer log data from JavaMatthieuF2008-11-21T22:01:36Z2009-10-18T04:44:20Z
<p>Is there any way to access the Windows Event Log from a java class. Has anyone written any APIs for this, and would there be any way to access the data from a remote machine?</p>
<p>The scenario is:</p>
<p>I run a process on a remote machine, from a controlling Java process.
This remote process logs stuff to the Event Log, which I want to be able to see in the controlling process.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1258775/what-is-technical-debt11What is technical debt?MatthieuF2009-08-11T06:55:19Z2009-10-02T12:55:57Z
<p>Can someone give me a good definition of what they mean by the phrase "Technical Debt"?</p>
http://stackoverflow.com/questions/820348/why-are-the-number-of-pages-in-a-word-document-different-in-perl-and-word-vba0Why are the number of pages in a Word document different in Perl and Word VBA?MatthieuF2009-05-04T14:27:46Z2009-09-10T08:00:02Z
<p>I have a (set of) word document(s) for which I'm trying to get various properties (number of pages, author etc) using Win32::OLE in Perl:</p>
<pre><code>print $MSWord->Documents->Open($name)->
BuiltInDocumentProperties->{"Number of pages"}->value . " \n";
</code></pre>
<p>This returns 4 pages. But the actual number of pages in the document is 9. The number of pages in the first section is 4. I want the total number of pages in the document.</p>
<p>If, within Word VBA, I do the following:</p>
<pre><code>MsgBox ActiveDocument.BuiltInDocumentProperties("Number of pages")
</code></pre>
<p>This displays 9. The number of pages displayed in the Properties/Statistics page is 9.</p>
<p>Do I have to force a recalculate? Is there some way to ask the OLE library to force a recalculate or do I have to treat every section separately?</p>
<p>I'm on XP, Word 2007, ActivePerl v5.10.0.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1227039/oracle-how-do-i-convert-hex-to-decimal-in-oracle-sql1Oracle: How do I convert hex to decimal in Oracle SQL?MatthieuF2009-08-04T11:49:40Z2009-08-04T11:57:29Z
<p>How do I convert hexadecimal to decimal (and back again) using Oracle SQL?</p>
http://stackoverflow.com/questions/593760/is-there-any-way-of-throttling-cpu-memory-of-a-process7Is there any way of throttling CPU/Memory of a process?MatthieuF2009-02-27T06:46:36Z2009-07-28T22:06:24Z
<p>Problem: I have a developers machine (read: fast, lots of memory), but the user has a users machine (read: slow, not very much memory).</p>
<p>I can simulate a slow network using Fiddler (<a href="http://www.fiddler2.com/fiddler2/" rel="nofollow">http://www.fiddler2.com/fiddler2/</a>)
I can look at how CPU is used over time for a process using Process Explorer (<a href="http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx" rel="nofollow">http://technet.microsoft.com/en-us/sysinternals/bb896653.aspx</a>).</p>
<p>Is there any way I can restrict the amount of CPU a process can have, or the amount of memory a process can have in order to simulate a users machine more effectively? (In order to isolate performance problems for instance)</p>
<p>I suppose I could use a VM, but I'm looking for something a bit lighter.</p>
<p>I'm using Windows XP, but a solution for any Windows machine would be welcome. Thanks.</p>
http://stackoverflow.com/questions/331191/what-interesting-novel-surprising-uses-have-you-found-for-automated-tests/1193407#11934070Answer by MatthieuF for What interesting/novel/surprising uses have you found for automated tests?MatthieuF2009-07-28T11:09:50Z2009-07-28T11:21:09Z<p>One thing I've used automated testing for is to make up for a (perceived) lack in the language (Java). I had a class which contained a list of other objects. The class had a getter to expose the contents of the list.</p>
<p>I didn't want to return a list from the getter, because then the list could be manipulated directly, so the getter had to return an unmodifiable List. This behaviour was true for all classes and sub-classes for this class, and all getters in the sub-classes.</p>
<p>So the unit test found all sub classes of the class, created an instance, called all of the getters that returned lists and checked that the list returned was unmodifiable.</p>
<p>In Java, you can't specify that a list be Unmodifiable, like you can in Scala. I know there are several other ways to achieve this.</p>
<p>--</p>
<p>Another simple use of unit tests (for integration this time), is to test the configuration & build of a system. We had a ClickOnce VB.NET application deployed daily to our integration test environment. We had a set of tests which checked the manifest for the application, and checked that all of the files specified in the manifest were there, had the correct size etc. This test was part of our deployment process.</p>
http://stackoverflow.com/questions/883531/automated-recording-tools/886601#8866010Answer by MatthieuF for Automated Recording ToolsMatthieuF2009-05-20T07:27:44Z2009-05-20T13:10:49Z<p>Quick Test Pro, but it's not cheap to say the least.</p>
<p>https://h10078.www1.hp.com/cda/hpms/display/main/hpms_content.jsp?zn=bto&cp=1-11-127-24^1352_4000_100__</p>
http://stackoverflow.com/questions/847708/how-can-a-class-access-its-own-classname/848104#8481041Answer by MatthieuF for How can a class access its own classname?MatthieuF2009-05-11T13:30:06Z2009-05-11T13:30:06Z<p>Try this:</p>
<pre><code>package uk.co.farwell.stack_overflow;
public class Test_847708 {
private final static String getId() {
return "string";
}
public static void main(String args[]) {
System.out.println("getId=" + getId());
}
}
</code></pre>
http://stackoverflow.com/questions/803007/why-choose-an-xsl-transformation/840759#8407590Answer by MatthieuF for Why choose an XSL-transformation?MatthieuF2009-05-08T16:43:53Z2009-05-08T16:43:53Z<p>I've used XML & XSLT in a previous project, financial web sites, and it worked well for us, but:</p>
<ol>
<li>We had multiple customers, which
varied the number of outputs we had.
We could replace the XSLT stylesheet
and this made changes to the site
easier to manage for the developers</li>
<li>We had a specialist web editor on the team. We gave them example XML & they could edit the stylesheets directly</li>
<li>If there were ever any wording changes that needed to go onto the website yesterday ( it was a bank, this happened surprisingly often), we could just deploy the new XSLT without redeploying the entire site.</li>
<li>Multiple different output formats were needed. We used <a href="http://xmlgraphics.apache.org/fop/" rel="nofollow">FOP</a> for transformation to PDF, which is based upon the same sort of technology, so wasn't too hard for us to understand :-)</li>
</ol>
<p>The main reason I see for using XSLT is if you have multiple sites all based upon the same XML, but requiring different HTML output.</p>
http://stackoverflow.com/questions/147362/what-is-the-best-way-to-test-a-stored-procedure/840665#8406651Answer by MatthieuF for What is the best way to test a stored procedure?MatthieuF2009-05-08T16:25:54Z2009-05-08T16:25:54Z<p>One method that I've used is to write a 'temporary' unit test for refactoring a particular stored procedure. You save the data from a set of queries from a database, and store them somewhere where a unit test can get at them.</p>
<p>Then, refactor your proc stock. The data returned should be the same, and can be compared directly against the saved data, automatically or manually.</p>
<p>An alternative is to run the two stored procedures in parallel, and compare the result sets.</p>
<p>This works particularly well for select-only stored procedures, but updates, inserts & deletes are more complex.</p>
<p>I've used this method to get the code to a state where it is more susceptible to unit testing, or simpler, or both.</p>
http://stackoverflow.com/questions/771011/what-are-the-pros-and-cons-of-automated-unit-tests-vs-automated-integration-tests/820554#8205542Answer by MatthieuF for What are the pros and cons of automated Unit Tests vs automated Integration tests?MatthieuF2009-05-04T15:19:45Z2009-05-04T15:19:45Z<p>The thing that distinguishes Unit tests and Integration tests is the number of parts required for the test to run.</p>
<p>Unit tests (theoretically) require very (or no) other parts to run.
Integration tests (theoretically) require lots (or all) other parts to run.</p>
<p>Integration tests test behaviour AND the infrastructure. Unit tests generally only test behaviour.</p>
<p>So, unit tests are good for testing some stuff, integration tests for other stuff.</p>
<p>So, why unit test?</p>
<p>For instance, it is very hard to test boundary conditions when integration testing. Example: a back end function expects a positive integer or 0, the front end does not allow entry of a negative integer, how do you ensure that the back end function behaves correctly when you pass a negative integer to it? Maybe the correct behaviour is to throw an exception. This is very hard to do with an integration test.</p>
<p>So, for this, you need a unit test (of the function).</p>
<p>Also, unit tests help eliminate problems found during integration tests. In your example above, there are a lot of points of failure for a single HTTP call:</p>
<p>the call from the HTTP client
the servlet validation
the call from the servlet to the business layer
the business layer validation
the database read (hibernate)
the data transformation by the business layer
the database write (hibernate)
the data transformation -> XML
the XSLT transformation -> HTML
the transmission of the HTML -> client</p>
<p>For your integration tests to work, you need ALL of these processes to work correctly. For a Unit test of the servlet validation, you need only one. The servlet validation (which can be independent of everything else). A problem in one layer becomes easier to track down.</p>
<p>You need both Unit tests AND integration tests.</p>
http://stackoverflow.com/questions/751626/performance-testing-best-practices-when-doing-tdd/759328#7593280Answer by MatthieuF for Performance testing best practices when doing TDD?MatthieuF2009-04-17T07:11:03Z2009-04-17T07:11:03Z<p>For the tuning itself, you can compare the old code and new code directly. But don't keep both copies around. This sounds like a nightmare to manage. Also, you're only ever comparing one version with another version. It's possible that a change in functionality will slow down your function, and that is acceptable to the users.</p>
<p>Personally, I've never seen performance criteria of the type 'must be faster than the last version', because it is so hard to measure.</p>
<p>You say 'in serious need of performance tuning'. Where? Which queries? Which functions? Who says, the business, the users? What is acceptable performance? 3 seconds? 2 seconds? 50 milliseconds?</p>
<p>The starting point for any performance analysis is to define the pass/fail criteria. Once you have this, you CAN automate the performance tests.</p>
<p>For reliability, you can use a (simple) statistical approach. For example, run the same query under the same conditions 100 times. If 95% of them return in under n seconds, that is a pass.</p>
<p>Personally, I would do this at integration time, from either a standard machine, or the integration server itself. Record the values for each test somewhere (cruise control has some nice features for this sort of thing). If you do this, you can see how performance progresses over time, and with each build. You can even make a graph. Managers like graphs.</p>
<p>Having a stable environment is always hard to do when doing performance testing, whether or not you're doing automated tests or not. You'll have that particular problem no matter how you develop (TDD, Waterfall, etc).</p>
http://stackoverflow.com/questions/755061/tips-on-a-tool-to-measure-code-quality/755067#7550674Answer by MatthieuF for Tips on a tool to measure code quality?MatthieuF2009-04-16T07:18:20Z2009-04-16T07:18:20Z<p>You could try looking at FxCop (<a href="http://msdn.microsoft.com/en-us/library/bb429476.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/bb429476.aspx</a>).</p>
<p>Edit: Actually, there is a page on wikipedia as well (on tools for Static Analysis). (<a href="http://en.wikipedia.org/wiki/List_of_tools_for_static_code_analysis" rel="nofollow">http://en.wikipedia.org/wiki/List_of_tools_for_static_code_analysis</a>).</p>
http://stackoverflow.com/questions/1815586/generic-programming-in-java/1815593#1815593Comment by MatthieuF on generic programming in javaMatthieuF2009-11-29T18:12:21Z2009-11-29T18:12:21ZThis is however, one of the differences between Scala and Java. In Scala, a Collection<Manager> is a subclass of Collection<Employee>.http://stackoverflow.com/questions/550242/should-we-always-reproduce-the-bugs-to-verify-the-fixes/550273#550273Comment by MatthieuF on Should we always reproduce the bugs to verify the fixes ?MatthieuF2009-11-28T20:46:27Z2009-11-28T20:46:27Z+1. Always is an impossible word. There are times when it is impossible to reproduce things locally - are you really going to duplicate your clients site with <i>all</i> of the infrastructure and then reproduce the exact conditions? No. You can't guarantee that you have fixed the bug unless you've reproduced it.http://stackoverflow.com/questions/1804995/how-to-deal-with-rapid-project-spec-changes-in-a-tight-deadline-scenario/1809097#1809097Comment by MatthieuF on How to deal with rapid project spec changes in a tight deadline scenario?MatthieuF2009-11-27T22:58:10Z2009-11-27T22:58:10ZYou're right, all shops have these challenges.http://stackoverflow.com/questions/1805923/incremental-deployment-of-java-web-applications/1806062#1806062Comment by MatthieuF on Incremental deployment of java web applicationsMatthieuF2009-11-27T08:37:18Z2009-11-27T08:37:18ZIt was a standard application (under Weblogic in fact), but instead of deploying a single WAR file, we dezipped all of the files and placed them in the correct directories ourselves (we kept the JARs as JARs of course). The server was not running at deployment time, so there would be no inconsistencies.http://stackoverflow.com/questions/1772078/disabling-nul-termination-of-strings-in-gccComment by MatthieuF on Disabling NUL-termination of strings in GCCMatthieuF2009-11-20T17:47:11Z2009-11-20T17:47:11ZGood luck with replacing the string functions in C with your own versions. And all of the functions to which you pass a nul-terminated string. And getting adequate performance.
Could you explain a bit more about your problem so that you don't get shouted at for trying to save a byte by allocating two at the beginning of the string please?http://stackoverflow.com/questions/1015631/tab-complete-with-ksh-in-emacs-mode-without-bindings/1015931#1015931Comment by MatthieuF on Tab Complete with KSH in emacs Mode without bindingsMatthieuF2009-10-08T07:37:57Z2009-10-08T07:37:57ZTo see the possible options, the default key binding is <ESC>=.http://stackoverflow.com/questions/630602/what-made-programming-easier-in-the-last-couple-of-years/630647#630647Comment by MatthieuF on What made programming easier in the last couple of years?MatthieuF2009-08-10T19:34:08Z2009-08-10T19:34:08ZI agree. CVS wasn't that bad. It's just been replaced by better things. Now Sourcesafe was bad....http://stackoverflow.com/questions/507077/testing-a-test/512425#512425Comment by MatthieuF on Testing a test?MatthieuF2009-07-28T10:56:35Z2009-07-28T10:56:35Z@chills42 Then you've answered your own question. Creating unit tests is development, it is writing code. If you're writing code, then you need to think about automated testing (of the tests). Similarly, if you need to refactor your tests, you need some automated tests.http://stackoverflow.com/questions/1006886/what-tools-do-you-use-to-write-maintain-manage-software-documentation/1006937#1006937Comment by MatthieuF on What tools do you use to write/maintain/manage software documentation?MatthieuF2009-06-17T15:32:39Z2009-06-17T15:32:39Z+1 for Word & Excel. There is a lot to be said for having a document format that can be shared easily with the client.http://stackoverflow.com/questions/868301/how-can-i-teach-a-know-it-all-beginner-programmerComment by MatthieuF on How can I teach a know-it-all beginner programmer?MatthieuF2009-05-29T07:08:27Z2009-05-29T07:08:27ZActually, I did find a bug in GCC :-)http://stackoverflow.com/questions/883531/automated-recording-tools/886601#886601Comment by MatthieuF on Automated Recording ToolsMatthieuF2009-05-20T07:28:44Z2009-05-20T07:28:44ZWhat a fantastic URL. Really easy to remember innit?http://stackoverflow.com/questions/863908/programmatic-automated-way-to-determine-is-my-site-reachable/863939#863939Comment by MatthieuF on programmatic automated way to determine: is my site reachable?MatthieuF2009-05-15T07:37:44Z2009-05-15T07:37:44ZSuch as www.witopia.nethttp://stackoverflow.com/questions/803007/why-choose-an-xsl-transformation/840759#840759Comment by MatthieuF on Why choose an XSL-transformation?MatthieuF2009-05-12T14:24:25Z2009-05-12T14:24:25ZThis is true. But there weren't very many of them around at the time.http://stackoverflow.com/questions/847708/how-can-a-class-access-its-own-classnameComment by MatthieuF on How can a class access its own classname?MatthieuF2009-05-11T13:29:29Z2009-05-11T13:29:29ZI would like to know more about the requirement. As has been noted below, you can just reference the name of the method directly: getId(), if it is static. You don't need to use reflection. See my answer below, but if I'm right, vote for rudolfson, because he got the answer before me.http://stackoverflow.com/questions/803007/why-choose-an-xsl-transformation/829330#829330Comment by MatthieuF on Why choose an XSL-transformation?MatthieuF2009-05-08T16:30:20Z2009-05-08T16:30:20Z+1 Absolutely. FOP for PDF is a good example.