User romaintaz - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T01:51:21Z http://stackoverflow.com/feeds/user/26457 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1881785/jsf-components-libs-generate-awful-html-code-its-not-ok-but-is-it-acceptable/1881934#1881934 0 Answer by romaintaz for JSF components libs generate awful html-code. It's not OK but is it acceptable? romaintaz 2009-12-10T15:52:26Z 2009-12-10T15:52:26Z <p>I agree with you, the generated HTML by JSF (and all components libraries) is quite awful, but it is still valid.</p> <p>I think the main problem is that the generated code must be compliant with the main browsers on the market, which include Internet Explorer 6+, Firefox, Opera, Chrome... This leads the developers to create sometimes a quite bad HTML just because "it works on every browsers"...</p> http://stackoverflow.com/questions/1859686/getting-raw-text-from-jtextpane 0 Getting raw text from JTextPane romaintaz 2009-12-07T12:27:09Z 2009-12-07T16:59:24Z <p>In my application, I use a <code>JTextPane</code> to display some log information. As I want to hightlight some specific lines in this text (for example the error messages), I set the <code>contentType</code> as "<code>text/html</code>". This way, I can format my text.</p> <p>Now, I create a JButton that copies the content of this <code>JTextPane</code> into the clipboard. That part is easy, but my problem is that when I call <code>myTextPane.getText()</code>, I get the HTML code, such as :</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;/head&gt; &lt;body&gt; blabla&lt;br&gt; &lt;font color="#FFCC66"&gt;&lt;b&gt;foobar&lt;/b&gt;&lt;/font&gt;&lt;br&gt; blabla &lt;/body&gt; &lt;/html&gt; </code></pre> <p>instead of getting only the raw content:</p> <pre><code>blabla foobar blabla </code></pre> <p>Is there a way to get only the content of my <code>JTextPane</code> in plain text? Or do I need to transform the HTML into raw text by myself?</p> http://stackoverflow.com/questions/1827271/is-it-true-that-in-france-log-files-have-to-be-french/1827393#1827393 1 Answer by romaintaz for Is it true that in France log files have to be French? romaintaz 2009-12-01T16:39:31Z 2009-12-01T16:39:31Z <p>There is indeed a law that says that every official documents must be available in french. I remember that General Electric had problems with that some years ago (see <a href="http://www.novethic.fr/novethic/entreprise/ressources%5Fhumaines/conditions%5Ftravail/general%5Felectric%5Fmedical%5Fsystems%5Fcondamne%5Fen%5Ffrancais/88938.jsp" rel="nofollow">here</a>).</p> <p>In fact, it depends on the target of these documents. Logs are indeed technicals documents, and then may not be concerned by this law. If theses logs can be used to some qualifications purposes, maybe you will be asked to translate them in french.</p> <p>However, be carefull: you are certainly using some third-party libraries that also produce log informations. Will you be able to translate them?</p> <p>To summarize, I would be surprised if a law forces the <strong>technical</strong> logs to be written in french. I never encounter this problem (and I also worked for General Electric in the past)...</p> http://stackoverflow.com/questions/1825711/what-does-this-element-do/1825719#1825719 3 Answer by romaintaz for what does this element do? romaintaz 2009-12-01T11:58:01Z 2009-12-01T11:58:01Z <p>CSS rules marked <code>!important</code> take precedence over later rules. So in your case, the first, the first <code>margin</code> definition will be considered, i.e. <code>0 0 0 847px</code>.</p> http://stackoverflow.com/questions/1819864/cif-tag-for-jsf-page/1819911#1819911 2 Answer by romaintaz for <c:if> tag for JSF page romaintaz 2009-11-30T13:45:13Z 2009-11-30T14:00:20Z <p>Yes, you can add JSTL tags in your JSF pages. However, in your case, you can simply do the following:</p> <pre><code>&lt;h:dataTable value="#{myBean.list}"... rendered="#{myBean.displayTable}"&gt; ... &lt;/h:dataTable&gt; </code></pre> <p>with the following method in <code>myBean</code>:</p> <pre><code>public boolean isDisplayTable() { return list != null &amp;&amp; list.size() &gt; 0; } </code></pre> <p>You can also try that (not sure if it will work):</p> <pre><code>&lt;!-- Idea from Colin Gislason --&gt; &lt;h:dataTable value="#{myBean.list}"... rendered="#{not empty myBean.list}"&gt; ... &lt;/h:dataTable&gt; &lt;h:dataTable value="#{myBean.list}"... rendered="#{not myBean.list.empty}"&gt; ... &lt;/h:dataTable&gt; </code></pre> <p>Note that you can use the <code>!</code> instead of the <code>not</code> keyword in the EL expressions (see a guide <a href="http://java.sun.com/j2ee/1.4/docs/tutorial/doc/JSPIntro7.html" rel="nofollow">here</a> about EL expressions), which results in <code>rendered="#{!empty myBean.list}"</code>.</p> http://stackoverflow.com/questions/1818729/java-foreach-loop-for-integer-i-list/1818742#1818742 7 Answer by romaintaz for Java foreach loop: for (Integer i : list) { ... } romaintaz 2009-11-30T09:25:34Z 2009-11-30T10:34:43Z <p>One way to do that is to use a counter:</p> <pre><code>ArrayList&lt;Integer&gt; list = new ArrayList&lt;Integer&gt;(); ... int size = list.size(); for (Integer i : list) { ... if (--size == 0) { // Last item. ... } } </code></pre> <p><em>Edit</em></p> <p>Anyway, as Tom Hawtin said, it is sometimes better to use the "old" syntax when you need to get the current index information, by using a <code>for</code> loop or the <code>iterator</code>, as everything you win when using the Java5 syntax will be lost in the loop itself...</p> <pre><code>for (int i = 0; i &lt; list.size(); i++) { ... if (i == (list.size() - 1)) { // Last item... } } </code></pre> <p>or </p> <pre><code>for (Iterator it = list.iterator(); it.hasNext(); ) { ... if (!it.hasNext()) { // Last item... } } </code></pre> http://stackoverflow.com/questions/1818548/perform-a-maven-patch-release/1818717#1818717 0 Answer by romaintaz for Perform a maven patch release romaintaz 2009-11-30T09:19:41Z 2009-11-30T09:19:41Z <p>There is no generic way to do that, as far as I know.</p> <p>However, the simplest way to do that is to create a simple <a href="http://maven.apache.org/plugins/maven-assembly-plugin/" rel="nofollow">assembly</a> that will create a JAR or a ZIP containing your classes. The assembly.xml will only need to include the specified class file:</p> <pre><code>&lt;assembly&gt; &lt;formats&gt; &lt;format&gt;zip&lt;/format&gt; &lt;/formats&gt; &lt;files&gt; &lt;file&gt; &lt;source&gt;target/classes/foo/bar/FooBar.class&lt;/source&gt; &lt;outputDirectory&gt;foo/bar&lt;/outputDirectory&gt; &lt;/file&gt; &lt;/files&gt; &lt;/assembly&gt; </code></pre> <p><em>(note that I didn't test this script)</em></p> <p>Then, <strong>after compiling</strong> (<code>mvn clean install</code>) your project, you will just need to run the command <code>mvn assembly:assembly</code> to create your ZIP file.</p> http://stackoverflow.com/questions/1818512/jsf-correct-way-to-build-forms/1818551#1818551 1 Answer by romaintaz for JSF - correct way to build forms romaintaz 2009-11-30T08:42:10Z 2009-11-30T08:42:10Z <p>If your application is really divided into independent layers (DAO / Service / presentation for example, or <a href="http://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller" rel="nofollow">MVC</a> if you prefer), then the presentation layer, which is managed by the JSF framework, must not be impacted by the database connection.</p> <p>You say that every database uses the same structure, so I don't really think that your JSF forms design and structures will be impacted by the database chosen by the user. This parameter will be taken into consideration in the deeper layers of your application, the ones managed by Hibernate in particular.</p> <p>So to answer your question, I would say that you don't have to care about this specificity when designing your pages with JSF. So use the "default" best practices for JSF developments.</p> http://stackoverflow.com/questions/1802915/java-create-a-new-string-instance-with-specified-length-and-filled-with-specifi/1802940#1802940 4 Answer by romaintaz for Java - Create a new String instance with specified length and filled with specific character. Best solution? romaintaz 2009-11-26T10:42:52Z 2009-11-26T10:42:52Z <p>Simply use the StringUtils class from <a href="http://commons.apache.org/lang" rel="nofollow">apache commons lang</a> project. You have a <a href="http://commons.apache.org/lang//api-2.4/org/apache/commons/lang/StringUtils.html#leftPad%28java.lang.String,%20int,%20char%29" rel="nofollow">leftPad</a> method:</p> <pre><code>StringUtils.leftPad("foobar", 10, '*'); // Returns "****foobar" </code></pre> http://stackoverflow.com/questions/1795808/and-and-or-in-java-if-statements/1795831#1795831 4 Answer by romaintaz for && (AND) and || (OR) in Java IF statements romaintaz 2009-11-25T09:53:18Z 2009-11-25T09:53:18Z <p>No, if a is true (in a <code>or</code> test), b will not be tested, as the result of the test will always be true, whatever is the value of the b expression.</p> <p>Make a simple test:</p> <pre><code>if (true || ((String) null).equals("foobar")) { ... } </code></pre> <p>will <strong>not</strong> throw a <code>NullPointerException</code>!</p> http://stackoverflow.com/questions/1795643/jsf-commandlink-does-not-work-on-firefox-after-a-whole-form-rerender 2 JSF CommandLink does not work on Firefox after a whole form reRender romaintaz 2009-11-25T09:16:20Z 2009-11-25T09:49:42Z <p>Hi all,</p> <p>I have a JSF 1.2 application (Sun RI, Facelets, Richfaces) that was used only on IE6 browsers. Now, we must also support Firefox (yeah !).</p> <p>In one of my pages, I have a form that contains a button that will re-render the whole form. After the re-rendering, some links (<code>&lt;h:commandLink/&gt;</code>) are added in this form.</p> <p>The JSF code looks like this:</p> <pre><code>&lt;h:form id="foobar"&gt; ... &lt;a4j:commandButton ... reRender="foobar"/&gt; ... &lt;h:commandLink .../&gt; &lt;/h:form&gt; </code></pre> <p>My problem is related to the HTML code generated by the command link component, which is as following:</p> <pre><code>&lt;a href="#" onclick="if(typeof jsfcljs == 'function'){jsfcljs(document.forms['foobar'],'...','');}return false"&gt;bla bla&lt;/a&gt; </code></pre> <p>(for information, <code>jsfcljs</code> is the Javascript function generated by the component <code>&lt;h:commandLink/&gt;</code>)</p> <p>The problem is that <code>document.forms["foobar"]</code> is working well when the page is initially rendered, but once the form is re-rendered after the Ajax call, this code does not work anymore on Firefox (but works on IE6).</p> <p>This results on a Javascript error when I click on one link in the form after the Ajax call.</p> <p>Note that if I call <code>document.getElementById("foobar");</code> after the Ajax call, Firefox founds my form...</p> <p>If you consider the following Javascript function:</p> <pre><code>function test() { var e = document.forms; var tmp = ""; for (i = 0; i &lt; e.length; i++) { tmp = tmp + e[i].id + " ; "; } alert(tmp); } </code></pre> <p>when I run it before and after the Ajax call, I get the following results:</p> <pre><code>someForm ; anotherForm ; foobar ; // Before Ajax call on FF someForm ; anotherForm ; // After Ajax call on FF. PROBLEM HERE! someForm ; anotherForm ; foobar ; // Before Ajax call on IE6 someForm ; anotherForm ; foobar ; // After Ajax call on IE6 </code></pre> <p>Here are my thoughts about the reason of the problem:</p> <p>When the Ajax response is received on the client side, a4j is removing the <em>reRender</em>-ed elements (in particular my <code>foobar</code> form) from the DOM tree objects, which results in removing it from <code>document.forms</code> array. Then, it adds again the <code>foobar</code> form with its new content. But Firefox does <strong>not</strong> update the <code>document.forms</code> array, while IE6 does. That's why <code>document.forms["foobar"]</code> returns <code>undefined</code> after the Ajax call.</p> <p>My solution to solve this problem is to change the <code>reRender</code> attribute in order to re-render only sub-parts of the form, and not the form itself. This way, my links work.</p> <p>However, I wanted to know if there is another way to solve this issue, without modifying the <code>reRender</code> attribute. Any idea?</p> <p><hr/></p> <p><em>Edit</em></p> <p>The Javascript code when a command link is clicked is the following:</p> <pre><code>function dpf(f) { var adp = f.adp; if (adp != null) { for (var i = 0; i &lt; adp.length; i++) { f.removeChild(adp[i]); } } }; function apf(f, pvp) { var adp = new Array(); f.adp = adp; var ps = pvp.split(','); for (var i = 0, ii = 0; i &lt; ps.length; i++, ii++) { var p = document.createElement("input"); p.type = "hidden"; p.name = ps[i]; p.value = ps[i + 1]; f.appendChild(p); adp[ii] = p; i += 1; } }; function jsfcljs(f, pvp, t) { apf(f, pvp); var ft = f.target; if (t) { f.target = t; } f.submit(); f.target = ft; dpf(f); }; </code></pre> <p>In the <code>&lt;h:commandLink&gt;</code> onclick attribute, we call the <code>jsfcljs(document.forms['foobar'], 'someId', '')</code> which is evaluated in <code>jsfcljs(undefined, 'someId', '')</code>. Then, when <code>f</code> is called, I get a Javacript error that says that <code>f is undefined</code>.</p> http://stackoverflow.com/questions/536327/is-it-a-good-way-to-use-java-util-concurrent-futuretask 3 Is it a good way to use java.util.concurrent.FutureTask ? romaintaz 2009-02-11T11:04:24Z 2009-11-22T23:30:55Z <p>First of all, I must say that I am quite new to the API java.util.concurrent, so maybe what I am doing is completely wrong.</p> <p>What do I want to do?</p> <p>I have a Java application that basically runs 2 separate processing (called <em>myFirstProcess</em>, <em>mySecondProcess</em>), but these processing must be run at the same time.</p> <p>So, I tried to do that:</p> <pre><code>public void startMyApplication() { ExecutorService executor = Executors.newFixedThreadPool(2); FuturTask&lt;Object&gt; futureOne = new FutureTask&lt;Object&gt;(myFirstProcess); FuturTask&lt;Object&gt; futureTwo = new FutureTask&lt;Object&gt;(mySecondProcess); executor.execute(futureOne); executor.execute(futureTwo); while (!(futureOne.isDone() &amp;&amp; futureTwo.isDone())) { try { // I wait until both processes are finished. Thread.sleep(1000); } catch (InterruptedException e) { e.printStackTrace(); } } logger.info("Processing finished"); executor.shutdown(); // Do some processing on results ... } </code></pre> <p><em>myFirstProcess</em> and <em>mySecondProcess</em> are classes that implements <code>Callable&lt;Object&gt;</code>, and where all their processing is made in the call() method.</p> <p>It is working quite well but I am not sure that it is the correct way to do that. Is a good way to do what I want? If not, can you give me some hints to enhance my code (and still keep it as simple as possible).</p> http://stackoverflow.com/questions/303614/whats-your-favorite-extreme-feedback-device/1758405#1758405 2 Answer by romaintaz for What's your Favorite Extreme Feedback Device? romaintaz 2009-11-18T19:21:29Z 2009-11-22T11:14:44Z <p>The <a href="http://www.nabaztag.com" rel="nofollow">Nabaztag</a> rabbit is quite popular, especially because there are many interfaces developped (for example for Hudson server). </p> <p><img src="http://leblog.wcie.fr/.a/6a00d8341cb14e53ef0120a4ee0220970b-800wi" alt="alt text"></p> http://stackoverflow.com/questions/1775121/geting-code-statistics-form-big-projects/1775207#1775207 4 Answer by romaintaz for Geting code statistics form big projects romaintaz 2009-11-21T11:20:27Z 2009-11-21T11:20:27Z <p>As explained by jitter, <a href="http://sonar.codehaus.org/" rel="nofollow">Sonar</a> is definitively the tool that you are looking for. Note that this tool used JavaNCSS, but since the version 1.9, they have their own internal tool (called SonarSquid) that is really totally compatible with Java 1.5 or 1.6 projects.</p> <p><img src="http://sonar.codehaus.org/wp-content/uploads/2009/05/sonar-squid.jpg" alt="alt text"></p> <p>In addition, you can monitor a complete set of projects.</p> <p>You can access the <a href="http://nemo.sonarsource.org/" rel="nofollow">Nemo demo instance</a> to have a complete overview of the tool!</p> http://stackoverflow.com/questions/1741160/how-can-i-create-a-password/1741229#1741229 10 Answer by romaintaz for how can I create a password? romaintaz 2009-11-16T10:09:11Z 2009-11-16T14:56:44Z <p><a href="http://commons.apache.org/lang/api/org/apache/commons/lang/RandomStringUtils.html" rel="nofollow">RandomStringUtils</a> from Apache Commons Lang provide some methods to generate a randomized String, that can be used as password.</p> <p><hr/></p> <p>Here are some examples of 8-characters passwords creation:</p> <pre><code>// Passwords with only alphabetic characters. for (int i = 0; i &lt; 8; i++) { System.out.println(RandomStringUtils.randomAlphabetic(8)); } System.out.println("--------"); // Passwords with alphabetic and numeric characters. for (int i = 0; i &lt; 8; i++) { System.out.println(RandomStringUtils.randomAlphanumeric(8)); } </code></pre> <p>which creates the following result:</p> <pre><code>zXHzaLdG oDtlFDdf bqPbXVfq tzQUWuxU qBHBRKQP uBLwSvnt gzBcTnIm yTUgXlCc -------- khDzEFD2 cHz1p6yJ 3loXcBau F6NJAQr7 PyfN079I 8tJye7bu phfwpY6y 62q27YRt </code></pre> <p>Of course, you have also methods that may restrict the set of characters allowed for the password generation:</p> <pre><code>for (int i = 0; i &lt; 8; i++) { System.out.println(RandomStringUtils.random(8, "abcDEF123")); } </code></pre> <p>will create only passwords with the characters a, b, c, D, E, F, 1, 2 or 3:</p> <pre><code>D13DD1Eb cac1Dac2 FE1bD2DE 2ab3Fb3D 213cFEFD 3c2FEDDF FDbFcc1E b2cD1c11 </code></pre> http://stackoverflow.com/questions/1734412/ide-that-provides-design-view-for-jsps-using-jsf/1734897#1734897 2 Answer by romaintaz for IDE that provides design view for JSPs using JSF romaintaz 2009-11-14T17:15:34Z 2009-11-14T17:15:34Z <p>You can have a look at the <a href="http://www.jboss.org/tools" rel="nofollow">JBoss Tool</a> plugin for Eclipse.</p> http://stackoverflow.com/questions/1656797/how-to-read-a-file-into-string-in-java/1656865#1656865 10 Answer by romaintaz for How to read a file into string in java? romaintaz 2009-11-01T10:52:56Z 2009-11-14T07:15:58Z <p>What about using <a href="http://commons.apache.org/" rel="nofollow">Apache Commons</a> (<code>Commons IO</code> and <code>Commons Lang</code>)?</p> <pre><code>String[] lines = StringUtils.split(FileUtils.readFileToString(new File("...")), '\n'); </code></pre> http://stackoverflow.com/questions/1725579/maven-making-child-projects-that-can-be-independent-of-their-parent/1728006#1728006 0 Answer by romaintaz for Maven - making child projects that can be independent of their parent romaintaz 2009-11-13T08:56:00Z 2009-11-13T08:56:00Z <p>You have to take care of the differences between the parent-child relation and the aggregation concept in Maven2. They are not the same principle, even if they are really often used at the same time.</p> <p><strong>PARENT</strong></p> <p>The first concept is that a project declares in his <code>pom.xml</code> a parent:</p> <pre><code>&lt;project&gt; &lt;modelVersion&gt;4.0.0&lt;/modelVersion&gt; &lt;parent&gt; &lt;groupId&gt;foo&lt;/groupId&gt; &lt;artifactId&gt;bar&lt;/artifactId&gt; &lt;version&gt;42&lt;/version&gt; &lt;/parent&gt; ... </code></pre> <p>In this case, in order to build this component, the parent project must be found in the local repository. This is your case here.</p> <p>The interest of the parent concept in Maven 2 is to inherit properties, dependencies, configuration. This is the place where you will put all the common information of the children projects.</p> <p>This is the exact same concept of the <code>extends</code> in Java language.</p> <p><strong>AGGREGATION</strong></p> <p>In this case, you have a project that aggregates several sub modules by specifying their names in <code>module</code> nodes:</p> <pre><code>&lt;modules&gt; &lt;module&gt;commons&lt;/module&gt; &lt;module&gt;client&lt;/module&gt; &lt;module&gt;server&lt;/module&gt; ... &lt;/modules&gt; </code></pre> <p>This means that every command that you will run on this root project will be executed on each module (the order is defined by the Maven 2 Reactor). For example, if you run <code>mvn clean install</code> on the root project, Maven 2 will run this command on the root project, then on project <code>commons</code>, then on <code>client</code> and finally on <code>server</code>.</p> <p>In this concept, you are able to compile one project without compiling any other one project (except if there are inter-dependencies of course).</p> <p>Here is a schema that shows the two different concepts:</p> <p><img src="http://www.sonatype.com/books/maven-book/reference/figs/web/pom%5Fbook-example.png" alt="alt text"></p> <p>You have a more detailed explanations on these two concepts in the Maven : The Definitive Guide, <a href="http://www.sonatype.com/books/maven-book/reference/pom-relationships-sect-multi-vs-inherit.html" rel="nofollow">here</a>.</p> http://stackoverflow.com/questions/1706663/alternative-to-richmodalpanel-for-internet-explorer-6 1 Alternative to <rich:modalPanel> for Internet Explorer 6 romaintaz 2009-11-10T09:34:13Z 2009-11-11T12:55:51Z <p>Hello,</p> <p>The pages of my web application are loaded really slowly on Internet Explorer 6, compared to Firefox : around 6s for IE6, 3s for Firefox.</p> <p>The size of the pages are indeed a big problem in my application, but I also know that the <code>&lt;rich:modalPanel&gt;</code> is really slow on IE6 (due to DOM manipulations).</p> <p>As we use a lot ot them, I think that this component may be indeed one of the reasons of this slowness...</p> <p>So, is there a JSF alternative to the <code>&lt;rich:modalPanel&gt;</code> component?</p> <p>Or eventually, do you know a javascript / jQuery modal panel code that can be easily used for a custom component in JSF?</p> <p>Technical informations:</p> <p>JSF 1.2 (+ Facelets) and Richfaces 3.2.2</p> http://stackoverflow.com/questions/1714733/use-productivity-tools-in-presentations/1714774#1714774 2 Answer by romaintaz for Use productivity tools in presentations romaintaz 2009-11-11T12:04:28Z 2009-11-11T12:04:28Z <p>It really depends on what you want to demonstrate. This kind of productivity tool are usefull even for demos in order to avoid loosing time on basic technical problems. You may also take advantages of such demos to introduce the features of these tools... </p> http://stackoverflow.com/questions/1688209/maven-assembly-problem/1688387#1688387 2 Answer by romaintaz for Maven Assembly Problem romaintaz 2009-11-06T15:39:37Z 2009-11-06T15:39:37Z <p>As you didn't provide the answer, here is how you need to attach the assembly creation to the <strong>package</strong> phase:</p> <pre><code>&lt;build&gt; &lt;plugins&gt; &lt;!-- Create assembly --&gt; &lt;plugin&gt; &lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt; &lt;artifactId&gt;maven-assembly-plugin&lt;/artifactId&gt; &lt;version&gt;2.2-beta-4&lt;/version&gt; &lt;configuration&gt; &lt;descriptors&gt; &lt;descriptor&gt;...&lt;/descriptor&gt; &lt;/descriptors&gt; ... &lt;/configuration&gt; &lt;!-- Attach the creation of the assembly to the package phase. --&gt; &lt;executions&gt; &lt;execution&gt; &lt;id&gt;assemble&lt;/id&gt; &lt;phase&gt;package&lt;/phase&gt; &lt;goals&gt; &lt;goal&gt;single&lt;/goal&gt; &lt;/goals&gt; &lt;/execution&gt; &lt;/executions&gt; &lt;/plugin&gt; </code></pre> http://stackoverflow.com/questions/1686666/quartz-job-tunning/1686787#1686787 0 Answer by romaintaz for Quartz job tunning romaintaz 2009-11-06T10:39:22Z 2009-11-06T11:05:53Z <p>Quartz may use cron for the scheduling, which is based on date and time, not duration. This means that the cron expression you define is directly related to the current time on the machine, not on when the application started.</p> <p>I am not aware of a Quartz configuration that will help you to solve your problem. However, a solution is to create your own <code>Thread</code>, which started during the launch of your application and that basically waits 2 minutes before calling a method:</p> <pre><code>while (running) { Thread.sleep(1000 * 120); doStuff(); } </code></pre> http://stackoverflow.com/questions/1674195/auto-formatting-code/1674261#1674261 12 Answer by romaintaz for Auto formatting code romaintaz 2009-11-04T14:51:03Z 2009-11-04T14:51:03Z <p>I disagree with you. For me, the formatting, even if it is only a way to "present" the source code, is also an important code quality indicator.</p> <p>Using the auto-formatting has several advantages. It homogenizes the format among all the developers of the team. This will avoid you some troubles with the SCM manipulation: for example, merging two files that have few real changes, but a lot of formatting differences is a nightmare!</p> <p>It can also show you some errors. For example:</p> <pre><code>if (aCondition) foo(); bar(); </code></pre> <p>will be reformatted:</p> <pre><code>if (condition) foo(); bar(); </code></pre> <p>showing that the second line is <strong>not</strong> in the <code>if</code> statement.</p> <p>Last, but not least, a well formatted code (not only for Java) is easier to read!</p> http://stackoverflow.com/questions/1666099/how-to-map-an-abstract-class-or-interface-in-hibernate-hql 0 How to map an abstract class or interface in Hibernate HQL? romaintaz 2009-11-03T09:02:16Z 2009-11-03T16:17:58Z <p>Imagine that I have a <code>Debtor</code> class. With Hibernate, I will define the class like that:</p> <pre><code>@Entity @Table(name = "T_DEBTOR") public class Debtor { @Id @Column(name = "ID_DEBTOR") private String idDebtor; ... </code></pre> <p>My DAO will then looks like:</p> <pre><code>public class DebtorDaoImpl implements DebtorDao { @PersistenceContext private EntityManager em; @SuppressWarnings("unchecked") public List&lt;Debtor&gt; findAllDebtors() { Query q = em.createQuery("select d from Debtor d"); return (List&lt;Debtor&gt;) q.getResultList(); } </code></pre> <p>This works well. However, I am in a configuration where I need to access differents schemas (as pointed <a href="http://stackoverflow.com/questions/1662427/how-to-handle-several-db-schemas-with-hibernate">here</a>). Of course, in each schema the table that hosts the debtor list has not the same name. In addition to that, they may not have the exact same structure. That why I have <em>x</em> differents <code>Debtor</code> class (where <em>x</em> is the number of schemas I manipulate).</p> <p>In the case where I have two differents schemas, I will have two different <code>Debtor</code> class: <code>DebtorOne</code> and <code>DebtorTwo</code>. As I want to ease my developments, I created an Interface (or an Abstract class, it does not change my problem here) that is implemented by both <code>DebtorOne</code> and <code>DebtorTwo</code>:</p> <pre><code>public interface Debtor { String getIdDebtor(); } </code></pre> <p>and:</p> <pre><code>@Entity @Table(name = "T_DEBTOR_ONE") public class DebtorOne implements Debtor { @Id @Column(name = "ID_DEBTOR") private String idDebtor; ... </code></pre> <p>If I let my DAO as it is, I get the following error from Hibernate:</p> <pre><code>Caused by: org.hibernate.hql.ast.QuerySyntaxException: Debtor is not mapped [select d from Debtor d] </code></pre> <p>If I change my DAO to have this:</p> <pre><code> public List&lt;Debtor&gt; findAllDebtors() { Query q = em.createQuery("select d from DebtorOne d"); return (List&lt;Debtor&gt;) q.getResultList(); } </code></pre> <p>then it works, but it is specific to <code>DebtorOne</code> schema...</p> <p>One solution I see is to define a named query on the <code>DebtorOne</code> and <code>DebtorTwo</code> classes and call this named query from my DAO. In others words:</p> <pre><code>@Entity @Table(name = "T_DEBTOR_ONE") @NamedNativeQueries( { @NamedNativeQuery(name = "findAllDebtors", query = "select d from DebtorOne d") }) public class DebtorOne implements Debtor { </code></pre> <p>and in the DAO:</p> <pre><code>@SuppressWarnings("unchecked") public List&lt;Debtor&gt; findAllDebtors() { Query q = em.createNamedQuery("findAllDebtors"); return (List&lt;Debtor&gt;) q.getResultList(); } </code></pre> <p>I didn't try it yet, but I think it will work...</p> <p><em>EDIT</em> I just tried, this will work... except that the <code>NamedQuery</code> must be named differently for <code>DebtorOne</code> and <code>DebtorTwo</code>...</p> <p>However, I am wondering if there is a way to solve my problem without using the latter solution?</p> <p><hr/></p> <p><strong>Edit</strong> regarding the first answer, which suggests to use the <code>@MappedSuperclass</code>. This annotation seems to be the perfect solution for me, but I think I forgot something, as I still get the same error.</p> <p>The main <code>Debtor</code>:</p> <pre><code>@MappedSuperclass public class Debtor { @Id @Column(name = "IDDEBTOR") protected String idDebtor; // With getter and setter } </code></pre> <p>one of the extended <code>Debtor</code> class:</p> <pre><code>@Entity @Table(name = "DEBTOR_ONE") public class DebtorOne extends Debtor { ... </code></pre> <p>and in my DAO:</p> <pre><code>public List&lt;Debtor&gt; findAllDebtors() { return (List&lt;Debtor&gt;) em.createQuery("select d from Debtor d").getResultList(); } </code></pre> <p>is still returning me the error <code>Caused by: org.hibernate.hql.ast.QuerySyntaxException: Debtor is not mapped [select d from Debtor d]</code></p> <p>What did I miss this time?</p> http://stackoverflow.com/questions/1662427/how-to-handle-several-db-schemas-with-hibernate 1 How to handle several DB schemas with Hibernate? romaintaz 2009-11-02T16:56:37Z 2009-11-03T10:54:08Z <p>In one of my projects, I have an application that manages several clients (or customer if you prefer). For each of them, I have a dedicated schema on a database. However, the application handles only one client at a time, i.e. the user must switch from one client to another in the application (at runtime, no restart of the application) in order to access the data from this new client.</p> <p>How would you manage the connections, as well as the persistence layer, for this kind of project?</p> <p>I want to use Hibernate for that. What are the points on which I must be really carefull when dealing with several database / schemas ?</p> <p>Can Spring be of any help in this case?</p> <p><hr/></p> <p>If I am not clear enough, let me explain the situation with an example. Imagine that my application can handle two clients: <code>clientONE</code> and <code>clientTWO</code>. I already implemented a class that can provide me the database schema, user, password and connection String for a given client.</p> <p>Each client have a list of debtors, but unfortunately, the DEBTOR table structure is not the same for <code>clientONE</code> and <code>clientTWO</code>. Even the names of tables / columns are not the same...</p> <p>So I can create one debtor class per client (I use Hibernate annotations):</p> <pre><code>@Entity @Table(name = "T_DEBTOR_ONE") ... public class ClientOneDebtor { @Id @Column(name = "ID_DEBTOR") private String idDebtor; ... } </code></pre> <p>and:</p> <pre><code>@Entity @Table(name = "T_DEBTOR_TWO") // Table names are not the same among the different schemas... ... public class ClientTwoDebtor { @Id @Column(name = "DEBTOR_ID") // It's just to show that the same information is stored in a column that has not the same name. private String idDebtor; ... } </code></pre> <p>Ideally, I will try to have a common <code>Debtor</code> class (here is an Abstract class, but I may use an Interface):</p> <pre><code>public abstract class AbstractDebtor { public abstract String getIdDebtor(); ... } @Entity @Table(name = "T_DEBTOR_ONE") ... public class ClientOneDebtor extends AbstractDebtor { @Id @Column(name = "ID_DEBTOR") private String idDebtor; ... } @Entity @Table(name = "T_DEBTOR_TWO") ... public class ClientTwoDebtor extends AbstractDebtor { @Id @Column(name = "DEBTOR_ID") // It's just to show that the same information is stored in a column that has not the same name. private String idDebtor; ... } </code></pre> <p>This way, it will be easier for me to manipulate the Debtor objects in my DAO / Service layer, as I will not need to duplicate my DAO and Services for every client. For example, the method from DAO to get the list of all Debtors will be <code>public List&lt;AbstractDebtor&gt; getAllDebtors() { ... }</code>.</p> <p>So, how would I change the context when I change the client managed by my application? In others words, how would I indicate to Hibernate (or Spring?) that I want to use the correct persistence objects (<code>ClientOneDebtor</code> or <code>ClientTwoDebtor</code>) regarding the client that is currently managed by my application?</p> <p>If you think that I am going in the wrong direction, do not hesitate to share your ideas on how to solve this kind of problem...</p> <p><hr/></p> <p><em>Edit regarding the first answers:</em></p> <p>The number of different schemas I will need to handle is around 15 - 20. In addition to that, I will only need to map only a little subset of their tables.</p> <p>I also know that having one schema per client/customer is not the best solution for storing data. However, this architecture exist since 5 years, and we may move to only one schema during the next year (in the best case ;) ).</p> http://stackoverflow.com/questions/1665986/ci-servers-for-system-simulation/1666003#1666003 1 Answer by romaintaz for CI Servers for system simulation romaintaz 2009-11-03T08:40:21Z 2009-11-03T08:40:21Z <p><a href="https://hudson.dev.java.net/" rel="nofollow">Hudson</a> is for you!</p> <p>Edit to be more precise about your requirements:</p> <ul> <li>Hudson run on a JVM (standalone service, using Jetty, or on a Tomcat server). Thus, the plateform is not a problem.</li> <li>Hudson is open-source.</li> <li>Hudson manages Java projects natively, but you can ask him to compile C, C++ or .Net projects.</li> <li>Support SVN, CVS natively, and a plugin for Clearcase exist (<a href="http://wiki.hudson-ci.org/display/HUDSON/ClearCase+Plugin" rel="nofollow">here</a>).</li> <li>Automated tests and reports: You will need to implement them, of course, but Hudson will launch them for you. For Java projects, simply use <a href="http://apache.maven.org" rel="nofollow">Maven</a> for that!</li> <li>The tests need different machines working together: Hudson can be launched on several machines (one master, several slaves). Each slave can be hosted by any kinf of machine.</li> </ul> http://stackoverflow.com/questions/1659642/java-update-properties-file-run-time/1659675#1659675 0 Answer by romaintaz for java update properties file run time romaintaz 2009-11-02T06:14:29Z 2009-11-02T06:14:29Z <p>In addition to the <code>load</code> and <code>store</code> method of the <code>Properties</code> class, you can also use the Apache Commons Configuration library, which provides functions to easily manipulate configuration files (and not only .properties files). </p> http://stackoverflow.com/questions/1657933/my-jar-file-is-not-working-in-java/1657947#1657947 3 Answer by romaintaz for My .jar file is not working in java romaintaz 2009-11-01T18:45:04Z 2009-11-01T18:45:04Z <p>You need to check the value of <code>Main-Class</code> in the Manifest file.</p> http://stackoverflow.com/questions/1642697/maven-embedded-tomcat-version/1642915#1642915 2 Answer by romaintaz for Maven embedded Tomcat version romaintaz 2009-10-29T10:55:18Z 2009-10-29T10:55:18Z <p>Maybe it would be easier for you to use the <a href="http://cargo.codehaus.org/Maven2+plugin" rel="nofollow">Cargo</a> plugin. You will then be able to change the Tomcat you want to run.</p> http://stackoverflow.com/questions/1641886/xml-as-structure-jsf-as-representation-is-it-a-nice-idea/1642033#1642033 1 Answer by romaintaz for XML as structure + JSF as representation: is it a nice idea? romaintaz 2009-10-29T06:59:50Z 2009-10-29T06:59:50Z <p>Simply use <a href="https://facelets.dev.java.net/" rel="nofollow">Facelets</a> !</p> <p><strong>Facelets</strong> is a library for JSF that introduces the concept of templating. That's exactly what you are doing here. Note that JSF 2.0 includes natively this library.</p> <p>Concerning the internationalization, Java and JSF already provide some functionalities for that (I am thinking about messageBundles <a href="http://java.sun.com/javaee/javaserverfaces/1.2/docs/tlddocs/f/loadBundle.html" rel="nofollow"><code>&lt;f:loadBundle/&gt;</code></a>).</p> http://stackoverflow.com/questions/1867605/is-it-possible-to-use-jsf-without-the-resulting-html-tables/1867670#1867670 Comment by romaintaz on Is it possible to use JSF without the resulting html tables? romaintaz 2009-12-08T15:45:51Z 2009-12-08T15:45:51Z In addition to this answer, you can also consider <code>Facelets</code> for your templating. I used Facelets, div and CSS to create the skeletons of my pages. http://stackoverflow.com/questions/1859686/getting-raw-text-from-jtextpane/1861317#1861317 Comment by romaintaz on Getting raw text from JTextPane romaintaz 2009-12-08T06:49:16Z 2009-12-08T06:49:16Z That's indeed a really good solution... except that I lost all the line breaks, and then my final String is only in one line. Too bad, because I really liked this solution! http://stackoverflow.com/questions/1818729/java-foreach-loop-for-integer-i-list/1818742#1818742 Comment by romaintaz on Java foreach loop: for (Integer i : list) { ... } romaintaz 2009-11-30T10:34:56Z 2009-11-30T10:34:56Z Edited again :) Thanks! http://stackoverflow.com/questions/1818729/java-foreach-loop-for-integer-i-list/1818742#1818742 Comment by romaintaz on Java foreach loop: for (Integer i : list) { ... } romaintaz 2009-11-30T09:53:41Z 2009-11-30T09:53:41Z You are totally right. Edited. Thanks! http://stackoverflow.com/questions/1818729/java-foreach-loop-for-integer-i-list/1818771#1818771 Comment by romaintaz on Java foreach loop: for (Integer i : list) { ... } romaintaz 2009-11-30T09:38:25Z 2009-11-30T09:38:25Z I think he wants to do specific treatment inside the loop when he reaches the last item, not getting the last integer of the list. For that, you can also do <code>list.get(list.size() - 1);</code> http://stackoverflow.com/questions/1802915/java-create-a-new-string-instance-with-specified-length-and-filled-with-specifi/1802940#1802940 Comment by romaintaz on Java - Create a new String instance with specified length and filled with specific character. Best solution? romaintaz 2009-11-26T12:30:21Z 2009-11-26T12:30:21Z @abyx&gt; Yes, you will need to add a JAR, but commons lang offers so nice utils methods, so I don't think it is really a drawback! http://stackoverflow.com/questions/1796271/is-it-true-that-most-computer-programmers-have-no-girlfriend Comment by romaintaz on Is it true that most Computer programmers have no girlfriend? romaintaz 2009-11-25T11:19:52Z 2009-11-25T11:19:52Z please get a life http://stackoverflow.com/questions/1795643/jsf-commandlink-does-not-work-on-firefox-after-a-whole-form-rerender/1795669#1795669 Comment by romaintaz on JSF CommandLink does not work on Firefox after a whole form reRender romaintaz 2009-11-25T09:51:20Z 2009-11-25T09:51:20Z Yes, my problem is already solved by correcting the reRender attribute. However, I wanted to see if there is another solution to solve this issue when the whole form is rerendered (note using <code>&lt;a4j:form&gt;</code> does not solve the problem). For the JS error, look at my edit. http://stackoverflow.com/questions/1795643/jsf-commandlink-does-not-work-on-firefox-after-a-whole-form-rerender Comment by romaintaz on JSF CommandLink does not work on Firefox after a whole form reRender romaintaz 2009-11-25T09:45:26Z 2009-11-25T09:45:26Z Sun implementation. http://stackoverflow.com/questions/1789236/using-stored-procedure-in-crystal-report-8-5 Comment by romaintaz on Using stored procedure in crystal report 8.5? romaintaz 2009-11-24T11:35:05Z 2009-11-24T11:35:05Z You can't start a bounty on a question that has not been asked in the previous 48 hours... http://stackoverflow.com/questions/1789164/iterator-for-loops-with-break/1789177#1789177 Comment by romaintaz on iterator for loops with break romaintaz 2009-11-24T10:51:18Z 2009-11-24T10:51:18Z Or you can refactor your code to avoid nested for :) http://stackoverflow.com/questions/1775121/geting-code-statistics-form-big-projects/1775147#1775147 Comment by romaintaz on Geting code statistics form big projects romaintaz 2009-11-21T11:16:05Z 2009-11-21T11:16:05Z +1 for Sonar. Note that JavaNCSS has some troubles with Java 1.5+ projects, and that's why the Sonar team developed their own tool in replacement for JavaNCSS (this tool is called SonarSquid and is embended in Sonar since the version 1.9 if I am correct). http://stackoverflow.com/questions/1686666/quartz-job-tunning/1686787#1686787 Comment by romaintaz on Quartz job tunning romaintaz 2009-11-06T11:06:04Z 2009-11-06T11:06:04Z edited to reflect that point. http://stackoverflow.com/questions/1674195/auto-formatting-code/1674261#1674261 Comment by romaintaz on Auto formatting code romaintaz 2009-11-05T09:19:08Z 2009-11-05T09:19:08Z I agree, checkstyle and (auto-)formatting are not exclusive! They must be used at the same time! http://stackoverflow.com/questions/1674195/auto-formatting-code Comment by romaintaz on Auto formatting code romaintaz 2009-11-04T15:17:45Z 2009-11-04T15:17:45Z Maybe you could provide us some code examples that you would not seen auto-formatted...