User Gaël Marziou - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T15:32:38Zhttp://stackoverflow.com/feeds/user/93960http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1683430/functional-data-structures-in-java/1683511#16835110Answer by Gaël Marziou for Functional Data Structures in JavaGaël Marziou2009-11-05T20:52:13Z2009-11-05T20:52:13Z<p>Take a look at <a href="http://code.google.com/p/google-collections/" rel="nofollow">Google collections</a>.</p>
http://stackoverflow.com/questions/1681449/what-do-you-monitor-with-jmx-in-your-production-jee-server/1683422#16834221Answer by Gaël Marziou for What do you monitor with JMX in your production JEE server?Gaël Marziou2009-11-05T20:38:04Z2009-11-05T20:38:04Z<p>On a previous project, we monitored thread counts and memory, number of HTTP sessions and size of query caches. The other interest of JMX with caches is that you can force a flush.</p>
http://stackoverflow.com/questions/1633573/what-is-this-syntax-in-java-i-do-not-recognize-it/1633615#16336150Answer by Gaël Marziou for What is this syntax in Java? I do not recognize it.Gaël Marziou2009-10-27T20:55:19Z2009-10-27T20:55:19Z<p>It's a label, see wikepedia <a href="http://en.wikipedia.org/wiki/Java%5Fsyntax" rel="nofollow">article</a></p>
http://stackoverflow.com/questions/1615899/ways-to-fill-a-list-in-java/1617644#16176440Answer by Gaël Marziou for Ways to fill a list in JavaGaël Marziou2009-10-24T10:46:03Z2009-10-24T10:46:03Z<p>I prefer approach #1 because the method can be overridden by a sub class that would want to use a different List implementation. Also, I think that naming a factory method as a getter is confusing, I would rather name it newSnapList() or createSnapList().</p>
http://stackoverflow.com/questions/1574960/java-clone-and-equality-checks/1575013#15750131Answer by Gaël Marziou for Java: clone() and equality checksGaël Marziou2009-10-15T20:55:00Z2009-10-15T20:55:00Z<p>Have a look at the javadoc for <a href="http://java.sun.com/javase/6/docs/api/java/lang/Object.html#clone%28%29" rel="nofollow">Objet.clone()</a>, it clearly states that while it is typically the case that: "x.clone().equals(x)" will be true, this is not an absolute requirement. </p>
http://stackoverflow.com/questions/1467550/what-is-hhojsid-uri-path-parameter-used-for0What is HHOJSID URI path parameter used for?Gaël Marziou2009-09-23T17:43:00Z2009-09-23T17:55:34Z
<p>I was testing a site with cookies disabled and I noticed HHOJSID parameter in URL path.
It could be a session ID encoded in URL like jsessionid for J2EE web applications.
I searched Google and found a lot of examples but no technical description.</p>
http://stackoverflow.com/questions/1402034/question-about-scope-of-static-class-variables-in-java/1402108#14021080Answer by Gaël Marziou for Question about Scope of Static Class Variables in JavaGaël Marziou2009-09-09T21:06:54Z2009-09-09T21:06:54Z<p>Could it be a classloader problem where the jar that contains your class is duplicated in each WEB-INF/lib of your different applications?
If so, I would try to add this jar to Tomcat libs and not to the application.</p>
http://stackoverflow.com/questions/1310087/injecting-entitymanager-vs-entitymanagerfactory/1310358#13103580Answer by Gaël Marziou for Injecting EntityManager Vs. EntityManagerFactoryGaël Marziou2009-08-21T06:44:24Z2009-08-21T06:44:24Z<p>I found that setting the @Repository Spring annotation on our DAOs and having EntityManager managed by Spring and injected by @PersistenceContext annotation is the most convenient way to get everything working fluently. You benefit from the thread safety of the shared EntityManager and exception translation. By default, the shared EntityManager will manage transactions if you combine several DAOs from a manager for instance. In the end you'll find that your DAOs will become anemic.</p>
http://stackoverflow.com/questions/1203027/how-can-i-easily-mock-out-a-static-method-in-java-junit4/1203130#12031300Answer by Gaël Marziou for How can I easily mock out a static method in Java (jUnit4)Gaël Marziou2009-07-29T21:22:43Z2009-07-29T21:22:43Z<p>You could use AspectJ to intercept the static method call and do something useful for your test.</p>
http://stackoverflow.com/questions/1168151/unit-testing-logging-and-dependency-injection/1168226#11682260Answer by Gaël Marziou for Unit Testing: Logging and Dependency InjectionGaël Marziou2009-07-22T21:01:42Z2009-07-22T21:01:42Z<p>I usually do not unit test logging statements by asserting on what's logged but I check that the code paths taken by my unit tests cover logging statements just to make sure that I don't get an exception while logging an exception!</p>
http://stackoverflow.com/questions/1106156/spring-roo-vs-wicket-and-spring/1129492#11294922Answer by Gaël Marziou for Spring roo Vs (Wicket and Spring)Gaël Marziou2009-07-15T05:03:45Z2009-07-15T07:21:09Z<p>Our current project uses Spring and Wicket, we have always used Spring but switched to Wicket a year ago. Few advices:</p>
<ul>
<li>Get the "Wicket in Action" book.</li>
<li>The user mailing list is very helpful.</li>
<li>Make sure you understand Wicket's programming model especially the session serialization related stuff (the book does not help enough in this area IMHO).</li>
<li>Wicket is good at building stateful pages, it requires more work to build stateless pages.</li>
<li>There are some good UI widgets available like inmethod DataGrid.</li>
<li>It's easy to inject your Spring beans in your pages or components.</li>
</ul>
<p>Spring Roo is still in beta (1.0 M2), so it may be a little early.
We also considered Tapestry 5 but we thought it was a bit young a year ago.</p>
http://stackoverflow.com/questions/1087918/automatic-update-of-keyword-in-word-document/1119078#11190780Answer by Gaël Marziou for Automatic update of keyword in Word documentGaël Marziou2009-07-13T12:04:39Z2009-07-13T12:04:39Z<p>You could have a look at how Groovy does it using using their <a href="http://groovy.codehaus.org/COM+Scripting" rel="nofollow">Scriptom module</a> which is based on the <a href="http://sourceforge.net/projects/jacob-project/" rel="nofollow">Jacob library (Java COM Bridge)</a>.</p>
http://stackoverflow.com/questions/1027307/is-there-a-standalone-java-library-which-provides-ldap-style-parsing/1115775#11157751Answer by Gaël Marziou for Is there a standalone Java library which provides LDAP style parsing?Gaël Marziou2009-07-12T10:42:16Z2009-07-12T10:42:16Z<p>You could also look at using <a href="http://directory.apache.org/" rel="nofollow">Apache directory server</a> either for using some of its classes like lavinio's suggestion for OpenLDAP or to embed it as part of your application.</p>
http://stackoverflow.com/questions/1115692/unit-testing-dao-am-i-doing-it-right/1115759#11157592Answer by Gaël Marziou for Unit testing DAO, am I doing it right?Gaël Marziou2009-07-12T10:34:10Z2009-07-12T10:34:10Z<ul>
<li>What are you testing here? IMHO the only thing important here is your SQL command as there's no specific logic to test in your DAO.</li>
<li>Testing init code like "new PostDAO(null)" is useless when it is so simple.</li>
<li>I would rather <a href="http://hsqldb.org" rel="nofollow">hsqldb</a> in memory mode to test against a real database and have less mock code.</li>
<li>Is there any reason why you could not use JUnit 4 test style using annotation rather than extending TestCase as in JUnit 3 ?</li>
</ul>
http://stackoverflow.com/questions/1049692/how-can-i-configure-spring-to-save-as-much-memory-as-possible/1115731#11157310Answer by Gaël Marziou for How can I configure Spring to save as much memory as possible?Gaël Marziou2009-07-12T10:22:55Z2009-07-12T10:22:55Z<p>If your Spring configuration uses AOP and load time weaving, you could use aop.xml to regain some memory from AspectJ by using AspectJ type demotion feature that was introduced in 1.6.5.</p>
<pre><code><weaver options="-Xset:typeDemotion=true"/>
</code></pre>
<p>Analyse your heap, if you find many RefType objects, the trick above will help.</p>
http://stackoverflow.com/questions/1080714/spring-jpa-exception-translation/1080996#10809961Answer by Gaël Marziou for Spring JPA Exception TranslationGaël Marziou2009-07-03T22:07:29Z2009-07-03T22:07:29Z<p>I do it only by putting the @Repository annotation on my DAO or Manager class that uses the EntityManager.
Make sure that you enabled component scanning:</p>
<pre><code><context:component-scan base-package="org.example"/>
</code></pre>
http://stackoverflow.com/questions/1079713/good-example-of-javadoc/1080938#10809381Answer by Gaël Marziou for good example of JavadocGaël Marziou2009-07-03T21:41:14Z2009-07-03T21:41:14Z<p>Have a look at Spring framework source, it has excellent javadocs</p>
http://stackoverflow.com/questions/442582/java-web-service-framework-library-which-is-a-better-one-and-why/774119#7741192Answer by Gaël Marziou for Java Web Service framework/library, which is a better one and why ?Gaël Marziou2009-04-21T19:07:01Z2009-04-21T19:07:01Z<p>We have tried Metro and CXF and kept CXF because Metro includes too many dependencies like Sun's APIs in its jar files which makes it difficult to integrate in another application server than Glassfish. CXF has a cleaner packaging with explicit external dependencies.
We also failed to enable Gzip compression with Metro while it worked like a charm with CXF. </p>
http://stackoverflow.com/questions/1691553/java-web-project-referencing-another-java-project/1691580#1691580Comment by Gaël Marziou on Java Web Project referencing another Java projectGaël Marziou2009-11-07T01:47:24Z2009-11-07T01:47:24ZJG wants to use classes from his applications which may be a simple execuatble jar, I'm not sure using remote service beans would help. I guess his solution is correct.http://stackoverflow.com/questions/1467550/what-is-hhojsid-uri-path-parameter-used-for/1467605#1467605Comment by Gaël Marziou on What is HHOJSID URI path parameter used for?Gaël Marziou2009-09-23T18:05:01Z2009-09-23T18:05:01ZIt makes sense, I did not notice that it appeared only on HP sites. Thankshttp://stackoverflow.com/questions/1188758/subversion-set-up-to-use-windows-authentication-but-still-asking-for-user-passComment by Gaël Marziou on Subversion set up to use Windows Authentication but still asking for user / passGaël Marziou2009-07-27T19:51:23Z2009-07-27T19:51:23Zcan you give details about how you configure SVN Apache?http://stackoverflow.com/questions/565334/spring-beans-redefinition-in-unit-test-environment/567677#567677Comment by Gaël Marziou on Spring beans redefinition in unit test environmentGaël Marziou2009-07-24T20:47:56Z2009-07-24T20:47:56ZThanks for this answer, I applied it with success. One thing to note is that this way of doing is very flexible because you can use several context:component-scan tags (e.g. one per module or per package). Also, it may help to set 'use-default-filters="false".http://stackoverflow.com/questions/1164363/page-expiration-in-javawicketComment by Gaël Marziou on Page Expiration in Java(Wicket)Gaël Marziou2009-07-22T21:10:44Z2009-07-22T21:10:44ZHave you thought to make your page stateless?http://stackoverflow.com/questions/120621/dark-colorscheme-for-eclipse/1134179#1134179Comment by Gaël Marziou on Dark colorscheme for eclipse?Gaël Marziou2009-07-21T18:15:25Z2009-07-21T18:15:25ZThanks, I added a few words on how to export.http://stackoverflow.com/questions/1150718/aspectj-vs-tostringComment by Gaël Marziou on AspectJ vs. toString()Gaël Marziou2009-07-19T20:13:30Z2009-07-19T20:13:30ZMaybe you should try to weave Object.toString()http://stackoverflow.com/questions/1129774/which-is-the-best-jquery-rich-editorComment by Gaël Marziou on which is the best jquery rich editor?Gaël Marziou2009-07-15T07:20:16Z2009-07-15T07:20:16ZAre you asking for an editor to embed in your web pages or for an editor to run on your desktop?http://stackoverflow.com/questions/1118999/net-for-freelance-projects/1119026#1119026Comment by Gaël Marziou on .NET for freelance projects?Gaël Marziou2009-07-13T12:13:15Z2009-07-13T12:13:15ZOn Windows, you can only download 2.1 preview version of MonoDevelop. When I did it, it broke my web application under Visual Studio: the server was no longer able to load my classes! Uninstalling it solved the problem. So for web development on Windows I think it's better to stick with Visual Web Developer 2008 SP1 Express.