User Ga&#235;l Marziou - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T15:32:38Z http://stackoverflow.com/feeds/user/93960 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1683430/functional-data-structures-in-java/1683511#1683511 0 Answer by Gaël Marziou for Functional Data Structures in Java Gaël Marziou 2009-11-05T20:52:13Z 2009-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#1683422 1 Answer by Gaël Marziou for What do you monitor with JMX in your production JEE server? Gaël Marziou 2009-11-05T20:38:04Z 2009-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#1633615 0 Answer by Gaël Marziou for What is this syntax in Java? I do not recognize it. Gaël Marziou 2009-10-27T20:55:19Z 2009-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#1617644 0 Answer by Gaël Marziou for Ways to fill a list in Java Gaël Marziou 2009-10-24T10:46:03Z 2009-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#1575013 1 Answer by Gaël Marziou for Java: clone() and equality checks Gaël Marziou 2009-10-15T20:55:00Z 2009-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-for 0 What is HHOJSID URI path parameter used for? Gaël Marziou 2009-09-23T17:43:00Z 2009-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#1402108 0 Answer by Gaël Marziou for Question about Scope of Static Class Variables in Java Gaël Marziou 2009-09-09T21:06:54Z 2009-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#1310358 0 Answer by Gaël Marziou for Injecting EntityManager Vs. EntityManagerFactory Gaël Marziou 2009-08-21T06:44:24Z 2009-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#1203130 0 Answer by Gaël Marziou for How can I easily mock out a static method in Java (jUnit4) Gaël Marziou 2009-07-29T21:22:43Z 2009-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#1168226 0 Answer by Gaël Marziou for Unit Testing: Logging and Dependency Injection Gaël Marziou 2009-07-22T21:01:42Z 2009-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#1129492 2 Answer by Gaël Marziou for Spring roo Vs (Wicket and Spring) Gaël Marziou 2009-07-15T05:03:45Z 2009-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#1119078 0 Answer by Gaël Marziou for Automatic update of keyword in Word document Gaël Marziou 2009-07-13T12:04:39Z 2009-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#1115775 1 Answer by Gaël Marziou for Is there a standalone Java library which provides LDAP style parsing? Gaël Marziou 2009-07-12T10:42:16Z 2009-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#1115759 2 Answer by Gaël Marziou for Unit testing DAO, am I doing it right? Gaël Marziou 2009-07-12T10:34:10Z 2009-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#1115731 0 Answer by Gaël Marziou for How can I configure Spring to save as much memory as possible? Gaël Marziou 2009-07-12T10:22:55Z 2009-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>&lt;weaver options="-Xset:typeDemotion=true"/&gt; </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#1080996 1 Answer by Gaël Marziou for Spring JPA Exception Translation Gaël Marziou 2009-07-03T22:07:29Z 2009-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>&lt;context:component-scan base-package="org.example"/&gt; </code></pre> http://stackoverflow.com/questions/1079713/good-example-of-javadoc/1080938#1080938 1 Answer by Gaël Marziou for good example of Javadoc Gaël Marziou 2009-07-03T21:41:14Z 2009-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#774119 2 Answer by Gaël Marziou for Java Web Service framework/library, which is a better one and why ? Gaël Marziou 2009-04-21T19:07:01Z 2009-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#1691580 Comment by Gaël Marziou on Java Web Project referencing another Java project Gaël Marziou 2009-11-07T01:47:24Z 2009-11-07T01:47:24Z JG 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#1467605 Comment by Gaël Marziou on What is HHOJSID URI path parameter used for? Gaël Marziou 2009-09-23T18:05:01Z 2009-09-23T18:05:01Z It makes sense, I did not notice that it appeared only on HP sites. Thanks http://stackoverflow.com/questions/1188758/subversion-set-up-to-use-windows-authentication-but-still-asking-for-user-pass Comment by Gaël Marziou on Subversion set up to use Windows Authentication but still asking for user / pass Gaël Marziou 2009-07-27T19:51:23Z 2009-07-27T19:51:23Z can you give details about how you configure SVN Apache? http://stackoverflow.com/questions/565334/spring-beans-redefinition-in-unit-test-environment/567677#567677 Comment by Gaël Marziou on Spring beans redefinition in unit test environment Gaël Marziou 2009-07-24T20:47:56Z 2009-07-24T20:47:56Z Thanks 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=&quot;false&quot;. http://stackoverflow.com/questions/1164363/page-expiration-in-javawicket Comment by Gaël Marziou on Page Expiration in Java(Wicket) Gaël Marziou 2009-07-22T21:10:44Z 2009-07-22T21:10:44Z Have you thought to make your page stateless? http://stackoverflow.com/questions/120621/dark-colorscheme-for-eclipse/1134179#1134179 Comment by Gaël Marziou on Dark colorscheme for eclipse? Gaël Marziou 2009-07-21T18:15:25Z 2009-07-21T18:15:25Z Thanks, I added a few words on how to export. http://stackoverflow.com/questions/1150718/aspectj-vs-tostring Comment by Gaël Marziou on AspectJ vs. toString() Gaël Marziou 2009-07-19T20:13:30Z 2009-07-19T20:13:30Z Maybe you should try to weave Object.toString() http://stackoverflow.com/questions/1129774/which-is-the-best-jquery-rich-editor Comment by Gaël Marziou on which is the best jquery rich editor? Gaël Marziou 2009-07-15T07:20:16Z 2009-07-15T07:20:16Z Are 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#1119026 Comment by Gaël Marziou on .NET for freelance projects? Gaël Marziou 2009-07-13T12:13:15Z 2009-07-13T12:13:15Z On 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.