User andreasmk2 - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T18:09:53Zhttp://stackoverflow.com/feeds/user/7400http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/442582/java-web-service-framework-library-which-is-a-better-one-and-why6Java Web Service framework/library, which is a better one and why ?andreasmk22009-01-14T10:51:15Z2009-07-26T19:35:37Z
<p>Currently I am evaluating number of web service frameworks in Java. I need web service framework that will help me to expose some functionality of existent application running on JBoss, The application is mostly developed using Spring and POJOs (no EJBs).</p>
<p>What I need is a framework having following properties:</p>
<ol>
<li>It should provide tools for automatic generation of boilerplate code and save time by eliminating repetitive tasks, for example tools generating WSDL from Java (java2wsdl), tools generating endpoints etc.</li>
<li>Applications should be easily deployed on existent J2EE platform (JBoss), this means that it should contain as less as possible configuration files (like axis2.xml in axis2 framework).</li>
<li>Also it is preferred to be able to deploy web service within <em>.war</em> archive of existent application. (it seems that Axis2 need a separate archive for web service app.) </li>
<li>It will be very cool to use a combination of <em>POJOs</em> and <em>Spring</em>.</li>
<li>Generally, the framework should have clean structure and design (for example Spring-WS lacks it), good documentation and whatever else characterizes a good piece of software.</li>
<li>It is preferred that framework incorporates some standard features like <em>JAX-WS</em> etc. instead of vendor specific methods.</li>
</ol>
<p>I have briefly examined</p>
<ul>
<li>Axis2</li>
<li>Apache CXF</li>
<li>and Sun's Metro</li>
<li>Spring WS</li>
</ul>
<p>But still it is difficult to decide what to use in my case:</p>
<ul>
<li>Axis2 seems to be so low level, it requires separate application archive and lots of configurations</li>
<li>Spring WS seems to be too opaque and "sophisticated for impression purposes (?)"</li>
<li>Apache CXF and Metro probably are two frameworks that I prefer to chose from but still </li>
</ul>
<p>I need your opinion and experience about usage of some of them in a real-world applications. </p>
http://stackoverflow.com/questions/457767/javabeans-activation-framework-is-it-worth-learning0JavaBeans Activation Framework: is it worth learning?andreasmk22009-01-19T14:35:43Z2009-01-19T16:26:11Z
<p>Recently I've stumbled upon a class named <em>javax.activation.DataHandler</em>. But while reading the javadoc of JDK6, I was not able to understand the <strong>aim</strong> and <strong>rationale</strong> of the framework. If you have have used the framework in real life project, please share your experience and explain what a developer can <em>"earn"</em> from it.</p>
http://stackoverflow.com/questions/442564/avoid-synchronizedthis-in-java/442638#4426384Answer by andreasmk2 for Avoid synchronized(this) in Java?andreasmk22009-01-14T11:23:27Z2009-01-14T11:23:27Z<p>While you are using synchronized(this) you are using the class instance as a lock itself. This means that while lock is acquired by thread 1 the thread 2 should wait</p>
<p>Suppose the following code</p>
<pre><code>public void method1() {
do something ...
synchronized(this) {
a ++;
}
................
}
public void method2() {
do something ...
synchronized(this) {
b ++;
}
................
}
</code></pre>
<p>Method 1 modifying the variable <em>a</em> and method 2 modifying the variable <em>b</em>, the concurrent modification of the same variable by two threads should be avoided and it is. BUT while <em>thread1</em> modifying <em>a</em> and <em>thread2</em> modifying <em>b</em> it can be performed without any raise condition.</p>
<p>Unfortunately the above code will not allow this since the we are using the same reference for a lock; This means that threads even if they are not in a race condition should wait and obviously the code sacrifices concurrency of the program.</p>
<p>The solution is to use <em>2</em> different locks for <em>two</em> different variables.</p>
<pre><code> class Test {
private Object lockA = new Object();
private Object lockB = new Object();
public void method1() {
do something ...
synchronized(lockA) {
a ++;
}
................
}
public void method2() {
do something ...
synchronized(lockB) {
b ++;
}
................
}
</code></pre>
<p>The above example uses more fine grained locks (2 locks instead one (<em>lockA</em> and <em>lockB</em> for variables <em>a</em> and <em>b</em> respectively) and as result allows better concurrency, on the other hand it became more complex than the first example ...</p>
http://stackoverflow.com/questions/432154/do-you-use-design-marker-interfaces-to-document-your-java-code/435343#4353430Answer by andreasmk2 for Do you use design marker interfaces to document your Java code?andreasmk22009-01-12T13:01:04Z2009-01-12T13:01:04Z<p>Let's put things in some order. Suppose that your class
implements Immutable interface, which provides semantic
to compiler or some tool invoked prior to compiler that
the instance will be never changed, since it's creation.
In order to ensure that, following preconditions should hold:</p>
<ol>
<li><p>All methods of a class, after the object is instantiated, will not assign value to its attributes,
It is not necessarily means that we should not have setters,
because any call to the method may have as side effect the modification
of Immutable object state.</p></li>
<li><p>All non-primitive attributes of a class should also be Immutable, either
extending the Immutable interface or being immutable without such declaration
(see Boolean, String, Long and other java.lang.* wrappers).</p></li>
</ol>
<p>Then let's try to examine how the Immutability can be ensured.
The first and mostly naive approach is to check for presence setters in
our code, it can be done by finding the existence of set* pattern in our
source code; and if pattern is found raise an exception. This partially
ensures the first precondition.</p>
<p>Another more advance approach is to perform some kind of static analysis
of the code, the data flow analysis. This approach may ensure that both of above
preconditions are true, but still it is really difficult to implement robust
version of such analiser.</p>
<p>My personal oppinion that the notion of interface should be preserved
in it's context, in Java the interface is a set of method signatures and
nothing more. If we wan't to use Interface for other purpose than original
we break the language semantics, for example the Serializable marker interface
is one of such cases - it is used for marking objects that can be serialized
by JVM.</p>
<p>On the other hand it is useful to use marker interface as a type definition
for some object that may combine various interfaces. Suppose a pipe-line
where we process data each node of line accepts one value, modifies it and
outputs it. Each node is simultaneously reader and writer, so the node can extend
reader AND writer interfaces. Personally, I believe that this approach makes
code more readable, and interface helps to explain some combined behaviors;
and always without violating it's concept. </p>
http://stackoverflow.com/questions/115685/code-compiling-in-eclipse-but-not-on-command-line/115812#1158120Answer by andreasmk2 for Code compiling in eclipse but not on command lineandreasmk22008-09-22T16:13:48Z2008-09-22T16:13:48Z<p>if you are on windows
write</p>
<blockquote>
<p>set JAVA_HOME=C:\Program Files.... path to JDK
the path should be the jdk path not jre
on my PC is C:\Program Files\Java\jdk1.6.0_07</p>
</blockquote>
<p><strong>WARNING</strong> : THE PATH SHOULD NOT BE NOT SURROUNDED BY QUOTES (") cmd's autocompletions puts them !</p>
<p>on unix like systems use</p>
<blockquote>
<p>export JAVA_HOME=<em>PATH TO JDK</em> (quotes are tolerated)</p>
</blockquote>
http://stackoverflow.com/questions/115184/does-it-matter-which-vendors-jdk-you-build-with/115252#1152521Answer by andreasmk2 for Does it matter which vendor's JDK you build with?andreasmk22008-09-22T14:46:23Z2008-09-22T14:46:23Z<p>JDKs are compiling your code to a <strong>bytecode</strong> and not directly to <strong>machine code</strong>. Is expected that compilers of different vendors generating cross-vendor compatible code. For example IBMs compiler for JDK1.5 will produce code that runs on SUN's JDK 1.5 and later without any problem.</p>
<p>Another issue is how compilers optimizing the bytecode, I have not information that some compilers performing better optimization than others. The largest part of optimization is performed during runtime by JVM (for example JIT (just-in-time) or AOT (ahead-of-time) strategies).</p>
http://stackoverflow.com/questions/114575/serializing-date-in-java/114627#1146270Answer by andreasmk2 for Serializing Date in Javaandreasmk22008-09-22T12:43:40Z2008-09-22T12:43:40Z<p>You don't need default constructor (empty) in order to serialize/deserialize date (either java.sql.Date or java.util.Date). During deserialization constructor is not called but attributes of object set directly to values from serialized data and you can use the object as it is since it deserialized.</p>
http://stackoverflow.com/questions/114457/consequences-of-running-a-java-class-file-on-different-jres/114547#1145474Answer by andreasmk2 for Consequences of running a Java Class file on different JREs?andreasmk22008-09-22T12:28:28Z2008-09-22T12:28:28Z<p>Java classes are <strong>forward</strong> compatible , e.g. classes generated using 1.5 compiler will be loaded and executed successfully <strong>without any problems</strong> on JRE 1.6. Generally your classes genereated by today java compilers will be compatible with future JREs (for example Java7)</p>
<p>The inverse does not hold : you can not run classes generated by 1.6 on older JREs (1.3, 1.4, etc).</p>
http://stackoverflow.com/questions/103179/how-do-i-set-an-applications-icon-globally-in-swing/103223#1032230Answer by andreasmk2 for How do I set an Application's Icon Globally in Swing?andreasmk22008-09-19T15:57:23Z2008-09-19T15:57:23Z<p>Extend the JDialog class (for example name it MyDialog) and set the icon in constructor. Then all dialogs should extend your implementation (MyDialog).</p>
http://stackoverflow.com/questions/103059/where-to-start-with-source-control/103189#1031890Answer by andreasmk2 for Where to start with source-controlandreasmk22008-09-19T15:55:02Z2008-09-19T15:55:02Z<p>I believe that strating point is with Distributed version control system (like mercurial or git). There are some advandtages of using it :</p>
<ol>
<li>You don't need to setup central repository (it rquires tedious server setup)</li>
<li>You can share changesets (revisions) with your friends by using email or other method, and integrate changes to your repository safely.</li>
<li>You can modify revision history (rebase, git supports it) easilly, what is impossible to do with SVN.</li>
</ol>
http://stackoverflow.com/questions/101195/hudson-findbugs-plugin-how-make-the-job-fail-if-any-problems/101231#1012310Answer by andreasmk2 for Hudson FindBugs plugin: how make the job fail if any problems?andreasmk22008-09-19T11:36:24Z2008-09-19T11:36:24Z<p>You can not rely on find bugs so much , it is just an expert system that tells you that something <strong>may</strong> be wrong with your program during runtime. Personally I have seen a lot of warning generated by findbugs because it was not able to figure out the correctness of code (in fact).</p>
<p>One example when you open a stream or jdbc connection in one method and close it in other, in this case findbugs expecting to see close() call in same method which sometimes is impossible to do.</p>
http://stackoverflow.com/questions/101151/what-is-the-unit-testing-strategy-for-method-call-forwarding/101190#1011901Answer by andreasmk2 for What is the unit testing strategy for method call forwarding?andreasmk22008-09-19T11:28:13Z2008-09-19T11:28:13Z<p>Unit Test should focus only to its corresponding class under testing. All attributes of class that are not of same type should be mocked.</p>
<p>Suppose you have a class (CarRegistry) that uses some kind of data access object (for example CarPlatesDAO) which loads/stores car plate numbers from Relational database.</p>
<p>When you are testing the CarRegistry you should not care about if CarPlateDAO performs correctly; Since our DAO has it's own unit test.</p>
<p>You just create mock that behaves like DAO and returns correct or wrong values according to expected behavior. You plug this mock DAO to your CarRegistry and test only the target class without caring if all aggregated classes are "green".</p>
<p>Mocking allows separation of testable classes and better focus on specific functionality.</p>
http://stackoverflow.com/questions/101024/how-to-choose-the-max-thread-count-for-an-http-servlet-container/101052#1010521Answer by andreasmk2 for How to choose the max thread count for an HTTP servlet container?andreasmk22008-09-19T10:50:54Z2008-09-19T10:50:54Z<p>No there is not. Keep you number of threads limited and under control so you not exceed system resources, Java's limit is usually around 100-200 live threads.</p>
<p>Good way to do it is by using Executors from <strong>java.util.concurrent</strong>.</p>
http://stackoverflow.com/questions/100988/name-three-programming-languages-that-seem-exotic/101035#1010352Answer by andreasmk2 for Name three programming languages that seem exotic.andreasmk22008-09-19T10:47:00Z2008-09-19T10:47:00Z<ul>
<li>Befunge</li>
<li>Brainfuck</li>
<li><strong>PROLOG</strong> (This one worth to learn and play, and it is too different from mainstream imperative paradigms).</li>
</ul>
http://stackoverflow.com/questions/100588/which-free-and-open-source-frameworks-would-you-recommend-for-replacing-which-asp/100984#1009840Answer by andreasmk2 for Which free and open source frameworks would you recommend for replacing which aspect of ATGandreasmk22008-09-19T10:30:25Z2008-09-19T10:30:25Z<p>Hibernate for database access
Spring for integration
GWT or good old JSP for presentation layer</p>
<p>Jboss is suitable for large applications requiring clustering and more sophisticated deployment. For simple web app Jetty or Tomcat are light and robust servers.</p>
<p>I propose to avoid EJB3, JMS etc, since once you start using them you can not get rid of them when they becoming obsolete, on the other hand POJOs are always up to date.</p>
http://stackoverflow.com/questions/63801/how-do-you-document-your-methods/72175#721750Answer by andreasmk2 for How do you document your methods?andreasmk22008-09-16T13:30:31Z2008-09-16T13:30:31Z<p>I write big documentation for the class itself which describes the <strong>rationale</strong> of it, 30% describing <strong>what</strong> it does and 50% <strong>how</strong> it is done, 20% describing some preconditions, postconditions and invariants that possibly may hold.</p>
<p>Methods that are more than 10 lines containing documentation describing <strong>why</strong> (70%) and <strong>how</strong> (30%).</p>
<p>Writing the docs describing what code does is pointless since code talks itself, but I haven't seen code describing <strong>why</strong> it does what it does.</p>
http://stackoverflow.com/questions/71681/how-do-you-evaluate-a-software-architect/71912#719121Answer by andreasmk2 for How do you evaluate a Software Architect?andreasmk22008-09-16T12:57:56Z2008-09-16T12:57:56Z<p>Some of more essential characteristics of ideal software architect are:</p>
<ul>
<li>He should be a good programmer.</li>
<li>Have experience with many languages from different paradigms.</li>
<li>Not stuck to specific technology or methodology or trend (you will be dissatisfied with very determined people).</li>
<li>Good team player (probably the most essential). Should have mastered written and oral communication skills and be social.</li>
<li>If you see something like IQ in his CV or see that guy show-off that he is smart, you will be dissatisfied, because you hiring very self-oriented guy, that does not see nothing outside himself.</li>
</ul>
http://stackoverflow.com/questions/70909/hibernate-mapping-a-composite-key-with-null-values/70966#709660Answer by andreasmk2 for Hibernate mapping a composite key with null valuesandreasmk22008-09-16T10:16:47Z2008-09-16T10:16:47Z<p>For composite keys (assumed that database allows nulls in PKs) you can have maximum number_of_cols^2 - 1 entries containing nulls, (for example for composite key of 2 columns you can have 3 rows having in their primary key null, the fourth is the PK without nulls).</p>
http://stackoverflow.com/questions/70909/hibernate-mapping-a-composite-key-with-null-values/70933#709332Answer by andreasmk2 for Hibernate mapping a composite key with null valuesandreasmk22008-09-16T10:12:18Z2008-09-16T10:12:18Z<p>No. Primary keys can not be null.</p>
http://stackoverflow.com/questions/70850/what-is-this-strange-c-code-format/70893#708933Answer by andreasmk2 for What is this strange C code format?andreasmk22008-09-16T10:03:55Z2008-09-16T10:03:55Z<p>By following some formatting and commenting standards, first of all you show your respect to other people that will read and edit code written by you. If you don't accept rules and write somehow esoteric code the most probable result is that you will not be able communicate with other people (programmers) effectively. Code format is personal choice if software is written only by you and for you and nobody is expected to read it, but how many modern software is written only by one person ?</p>
http://stackoverflow.com/questions/70347/zlib-compatible-compression-streams/70359#703592Answer by andreasmk2 for Zlib-compatible compression streams?andreasmk22008-09-16T08:28:49Z2008-09-16T08:28:49Z<p>They just compressing the data using zlib or deflate algorithms , but does not provide the output for some specific file format. This means that if you store the stream as-is to the hard drive most probably you will not be able to open it using some application (gzip or winrar) because file headers (magic number, etc ) are not included in stream an you should write them yourself.</p>
http://stackoverflow.com/questions/442564/avoid-synchronizedthis-in-java/442638#442638Comment by andreasmk2 on Avoid synchronized(this) in Java?andreasmk22009-01-14T12:33:55Z2009-01-14T12:33:55Zin order to have a deadlock we should perform a call from block synchronized by A to the block synchronized by B. daveb, you are wrong ...http://stackoverflow.com/questions/442564/avoid-synchronizedthis-in-java/442638#442638Comment by andreasmk2 on Avoid synchronized(this) in Java?andreasmk22009-01-14T12:31:02Z2009-01-14T12:31:02Zyes they should be final , but here is pseudocode