User Alotor - Stack Overflowmost recent 30 from stackoverflow.com2009-12-12T07:33:38Zhttp://stackoverflow.com/feeds/user/2937http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/146576/why-is-the-java-main-method-static16Why is the Java main method static?Alotor2008-09-28T19:45:34Z2009-11-05T07:00:20Z
<p>The method signature of a Java main method is:</p>
<pre><code>public static void main(String[] args){
...
}
</code></pre>
<p>Is there a reason for this method to be static?</p>
http://stackoverflow.com/questions/153420/is-it-feasible-to-create-a-rest-client-with-flex13Is it feasible to create a REST client with Flex?Alotor2008-09-30T14:56:40Z2009-10-05T07:43:48Z
<p>I'm starting a project using a Restful architecture implemented in Java (using the new JAX-RS standard)</p>
<p>We are planning to develop the GUI with a Flex application. I have already found some problems with this implementation using the HTTPService component (the response error codes, headers access...).</p>
<p>Any of you guys have some experience in a similar project. Is it feasible?</p>
http://stackoverflow.com/questions/259140/scanning-java-annotations-at-runtime7Scanning Java annotations at runtimeAlotor2008-11-03T16:17:18Z2009-09-12T15:11:38Z
<p>What is the best way of searching the whole classpath for an annotated class?</p>
<p>I'm doing a library and I want to allow the users to annotate their classes, so when the Web application starts I need to scann the whole classpath for certain annotation.</p>
<p>Do you know a library or a Java facility to do this?</p>
<p>Edit: I'm thinking about something like the new functionality for Java EE 5 Web Services or EJB's. You annotate your class with @WebService or @EJB and the system find these classes while loading so they are accessible remotely.</p>
http://stackoverflow.com/questions/1379022/method-call-inside-actor-freezes-in-scala1Method call inside Actor freezes in ScalaAlotor2009-09-04T12:47:04Z2009-09-04T14:09:12Z
<p>I have the following code. If I comment the call to "foo()" inside the actor's body, the code works fine. But if "foo()" is activated... my code freezes!</p>
<p>Anyone kwnows why?</p>
<pre><code>import scala.actors.Actor._
object Main extends Application{
def foo() = {
println("I'm on foo")
}
def testActor() = {
val target = self
for(i <- 1 to 100){
actor{
foo()
target ! i
}
}
var total = 0
receive{
case x:Int => total += x
}
total
}
println("Result: " + testActor())
}
</code></pre>
http://stackoverflow.com/questions/909554/how-to-get-the-ejb-listening-port0How to get the EJB listening port?Alotor2009-05-26T08:18:50Z2009-07-26T10:00:03Z
<p>I'm currently developing a library for monitoring calls to several remote services (WebServices, EJBs...). </p>
<p>One of the parameters that i would like to register is the port from which a EJB is called (a Stateless Session Bean invoked like a remote object)</p>
<p>There is any standarised way of getting the port? Or should I inspect the JNDI tree for this kind of information?</p>
<p>I'm using the EJB 2.1 spec, but it's also posible for me to use EJB 3</p>
http://stackoverflow.com/questions/27729/flex-tools-for-mac3Flex tools for MacAlotor2008-08-26T10:48:04Z2009-07-03T17:55:56Z
<p>I'm starting developing with Flex on my Mac but i don't find good tools to ease the development (apart from Flex Builder).</p>
<p>What is your favourite choice for Flex development on Mac?</p>
http://stackoverflow.com/questions/560787/jquery-parsererror-when-trying-to-use-ajax-in-ie-62JQuery "parsererror" when trying to use Ajax in IE 6Alotor2009-02-18T12:05:49Z2009-07-02T10:09:34Z
<p>When using jQuery Ajax, I am receiving a parseerror in IE 6, Firefox works just fine.</p>
<p>My code is like this:</p>
<pre><code>$.ajax({
url: 'test.xml',
type: 'GET',
dataType: 'xml',
error: function(XMLHttpRequest, textStatus, errorThrown) {
alert('Error: ' + textStatus + ", " + errorThrown);
},
success: function(xml){
...
}
});
</code></pre>
<p>The output is "Error: parsererror, undefined"</p>
http://stackoverflow.com/questions/27598/how-can-i-make-jconsole-work-with-websphere-6-11How can I make "jconsole" work with Websphere 6.1?Alotor2008-08-26T09:03:21Z2009-05-28T18:13:52Z
<p>I've deployed some Managed Beans on WebSphere 6.1 and I've managed to invoke them through a standalone client, but when I try to use the application "jconsole" distributed with the standard JDK can can't make it works.</p>
<p>Has anyone achieved to connect the jconsole with WAS 6.1?</p>
<p>IBM WebSphere 6.1 it's supossed to support JSR 160 JavaTM Management Extensions (JMX) Remote API. Furthermore, it uses the MX4J implementation (<a href="http://mx4j.sourceforge.net" rel="nofollow">http://mx4j.sourceforge.net</a>). But I can't make it works with neither "jconsole" nor "MC4J".</p>
<p>I have the Classpath and the JAVA_HOME correctly setted, so the issue it's not there.</p>
http://stackoverflow.com/questions/105544/most-important-problem-solved-by-ejb-3/909535#9095350Answer by Alotor for Most important problem solved by EJB 3?Alotor2009-05-26T08:14:07Z2009-05-26T08:14:07Z<p>Convention over configuration.</p>
<p>The default behaviour of EJB 3 it's more often the desired one. I think the main problem with EJB 2.1 was the necesity of verbose config files, the new annotation-based configuration solve most of this problem.</p>
http://stackoverflow.com/questions/289801/getting-the-caller-to-a-spring-aop-proxy0Getting the caller to a Spring AOP ProxyAlotor2008-11-14T11:10:38Z2009-05-18T05:18:41Z
<p>I'm searching for a way of developing a MethodInterceptor which prints the caller class.</p>
<p>Is there any way of getting the caller object into the method interceptor?</p>
http://stackoverflow.com/questions/239265/jaxb-or-stax-message-limits1JAXB or StAX Message LimitsAlotor2008-10-27T07:25:14Z2009-05-12T15:13:27Z
<p>I'm current developing a WebService in a Bea Websphere 6.1 environment with Axis 2 implementation, I'm trying to respect the current standards for Web Services (JAXB, JAXWS, StAX...).</p>
<p>How long can be an XML message on this platform? </p>
<p>I've searched around but I haven't found anything related to this topic.</p>
http://stackoverflow.com/questions/820212/actionscript-library-to-convert-markdown-to-html2ActionScript library to convert Markdown to HTMLAlotor2009-05-04T13:56:48Z2009-05-04T14:07:00Z
<p>Hi,</p>
<p>I'm currently working on a Flex 3.0 project in which I have to display some input text with minimum formatting.</p>
<p>We are considering to use "markdown" as the chosen way to express this formatting, now I would like to know if there is a library for this purpose.</p>
http://stackoverflow.com/questions/560787/jquery-parsererror-when-trying-to-use-ajax-in-ie-6/820227#8202272Answer by Alotor for JQuery "parsererror" when trying to use Ajax in IE 6Alotor2009-05-04T13:58:54Z2009-05-04T13:58:54Z<p>Ok, this happens when I execute the code in localhost. When I upload the code to the remote server works OK.</p>
http://stackoverflow.com/questions/591799/iphone-simulator-fails/671459#6714593Answer by Alotor for iPhone simulator failsAlotor2009-03-22T19:07:35Z2009-03-22T19:07:35Z<p>You need to remove the folder as sudo ~/Library/Application Support/iPhone Simulator</p>
<pre><code>sudo rm -Rfv ~/Library/Application\ Support/iPhone\ Simulator
</code></pre>
<p>It looks like previous versions of the SDK have some kind of permission trouble.</p>
http://stackoverflow.com/questions/33744/is-scala-the-next-big-thing/37049#3704926Answer by Alotor for Is Scala the next big thing?Alotor2008-08-31T19:40:11Z2009-02-23T09:33:03Z<p>Well, I don't know if Scala will be the next big thing, but it has some attributes that make it a good candidate.</p>
<ul>
<li>Functional seems to be getting more and more important with the increment of multi-core architectures.</li>
<li>Runs over the JVM </li>
<li>It's object oriented.</li>
<li>Java/C++ syntax</li>
<li>XML as a language constructor</li>
</ul>
<p>For me, the next big thing will be the "multi-language paradigm", I mean it will become more frequent to see a project with different languages doing different things. Maybe its logic implemented in Groovy and its GUI in JavaFX, maybe the concurrent stuff with Scala, and a DSL implemented with JRuby or Jython.</p>
<p>Anyway, I hope that its strange syntax will not be an impediment because I like Scala a lot and, in my opinion, it's a superior language to Java in many aspects.</p>
http://stackoverflow.com/questions/377311/combo-boxes-with-hibernate1Combo boxes with HibernateAlotor2008-12-18T09:16:55Z2008-12-18T14:26:21Z
<p>Im searching for the best way to mantain combo box values within a Mysql Database accessed by Hibernate objects.</p>
<p>Currently we have the following table:</p>
<pre><code>CREATE TABLE COMBO_VALUES(
KEY VARCHAR(5) NOT NULL,
COMBO_TYPE VARCHAR(20) NOT NULL,
VALUE VARCHAR(100) NOT NULL
PRIMARY KEY(KEY,COMBO_TYPE)
);
INSERT INTO COMBO_VALUES VALUES('A1', 'COMBO1', 'VALUE1');
INSERT INTO COMBO_VALUES VALUES('A2', 'COMBO1', 'VALUE2');
INSERT INTO COMBO_VALUES VALUES('A3', 'COMBO1', 'VALUE3');
</code></pre>
<p>The problem with this table is that we are unable to map this with Hibernate.</p>
<p>Anyone has been in this situation before?</p>
http://stackoverflow.com/questions/264764/how-to-get-websphere-6-1-port-number0How to get Websphere 6.1 port numberAlotor2008-11-05T10:12:15Z2008-11-05T13:04:36Z
<p>I'm currently working on a WebSphere 6.1 Web Project.</p>
<p>In my java code, how can i get the current running application port?</p>
http://stackoverflow.com/questions/239280/which-is-the-best-alternative-for-java-serialization7Which is the best alternative for Java Serialization?Alotor2008-10-27T07:41:18Z2008-10-28T02:46:35Z
<p>I'm currently working on a project which needs to persist any kind of objects (of which implementation we don't have any control) so these objects could be recovered afterwards. </p>
<p>We can't implement a ORM because we can't restrict the users of our library at development time.</p>
<p>Our first alternative was to serialize it with the Java default serialization but we had a lot of trouble recovering the objects when the users started to pass different versions of the same object (attributes changed types, names, ...).</p>
<p>We have tried with the XMLEncoder class (transforms an object into a XML), but we have found that there is a lack of functionality (doesn't support Enums for example). </p>
<p>Finally, we also tried JAXB but this impose our users to annotate their classes.</p>
<p>Any good alternative?</p>
http://stackoverflow.com/questions/29689/javadoc-template-generator2Javadoc template generatorAlotor2008-08-27T07:55:06Z2008-09-15T16:35:34Z
<p>I have a large codebase without javadoc and I want to run a program to write a skeleton with the basic javadoc information (e.g. for each method's parameter write @param...) so I just have to fill the gaps left.</p>
<p>Somebody knows a good solution for this?</p>
<p><strong>Edit:</strong></p>
<p>JAutodoc is what I was looking for, it has ant tasks, an eclipse plugin and uses velocity for the template definition. Thank you Laurent K.</p>
http://stackoverflow.com/questions/61400/what-makes-a-good-unit-test/61417#614174Answer by Alotor for What Makes a Good Unit Test?Alotor2008-09-14T15:40:17Z2008-09-14T15:40:17Z<ul>
<li>Unit Testing just tests the external API of your Unit, you shouldn't test internal behaviour.</li>
<li>Each test of a TestCase should test one (and only one) method inside this API.
<ul>
<li>Aditional Test Cases should be included for failure cases.</li>
</ul></li>
<li>Test the coverage of your tests: Once a unit it's tested, the 100% of the lines inside this unit should had been executed.</li>
</ul>
http://stackoverflow.com/questions/2968/what-is-the-best-way-to-parse-strings-in-java/37054#370541Answer by Alotor for What is the best way to parse strings in JavaAlotor2008-08-31T19:45:45Z2008-08-31T19:45:45Z<p>Try <a href="http://javacc.dev.java.net" rel="nofollow">JavaCC</a> a parser generator for Java.</p>
<p>It has a lot of features for interpreting languages, and it's well supported on Eclipse.</p>
http://stackoverflow.com/questions/19155/how-do-i-become-a-programmer-who-gets-things-done/30358#303581Answer by Alotor for How do I become a programmer who 'gets things done'?Alotor2008-08-27T14:56:17Z2008-08-27T14:56:17Z<p>Try to visit <a href="http://www.lifehacker.com" rel="nofollow">http://www.lifehacker.com</a> they are the #1 fanboys of the GTD stuff.</p>
http://stackoverflow.com/questions/1496/what-are-the-preferred-versions-of-vim-and-emacs-on-osx/29905#299050Answer by Alotor for What are the preferred versions of Vim and Emacs on OSX?Alotor2008-08-27T11:06:14Z2008-08-27T11:06:14Z<p>I use the CarbonEmacs version on the Macports progam. It installs all the dependencies with just one line:</p>
<pre><code>sudo port install emacs
</code></pre>
<p>For anyone intesrested in Macports (www.macports.org)</p>
http://stackoverflow.com/questions/22697/whats-the-best-mock-framework-for-java/27778#277780Answer by Alotor for What's the best mock framework for Java?Alotor2008-08-26T11:26:56Z2008-08-26T11:26:56Z<p>Another one very easy to use is</p>
<p><a href="http://www.jmock.org/" rel="nofollow">http://www.jmock.org/</a></p>
http://stackoverflow.com/questions/27581/overriding-equals-and-hashcode-in-java/27604#276045Answer by Alotor for Overriding equals and hashCode in JavaAlotor2008-08-26T09:09:45Z2008-08-26T09:09:45Z<p>If you are using Eclipse it has integrated a very cool hashCode / equals generator.</p>
<p>You just have to be on a class and do: right click > Source code > Generate hashCode() and equals()...</p>
<p>Then, a window will show up and you can choose the fields to include in your methods.</p>
http://stackoverflow.com/questions/27562/oracle-write-to-file/27579#275790Answer by Alotor for Oracle write to fileAlotor2008-08-26T08:47:39Z2008-08-26T09:09:22Z<p>If you're using Sql Plus, is as easy as:</p>
<pre>
SQL> spool c:\temp\out.txt
SQL> SELECT * FROM USERS;
SQL> spool off
</pre>
<p>This three sentences will output the result of the query "SELECT * FROM USERS" to the file c:\temp\out.txt.</p>
<p>You can format this query using the string manipulation functions of Oracle.</p>
http://stackoverflow.com/questions/560787/jquery-parsererror-when-trying-to-use-ajax-in-ie-6Comment by Alotor on JQuery "parsererror" when trying to use Ajax in IE 6Alotor2009-02-18T14:50:35Z2009-02-18T14:50:35ZNo... i've tried with several XML and all give the same error. It happened even with the simpler XML... like: <test></test>http://stackoverflow.com/questions/239280/which-is-the-best-alternative-for-java-serialization/239740#239740Comment by Alotor on Which is the best alternative for Java Serialization?Alotor2008-10-27T14:27:51Z2008-10-27T14:27:51ZI don't dought that this isn't the perfect solution but anyway it's a requirement imposed to me externaly. We are developing a library and there is a necesity to register the calls through this library.