User Abarax - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T19:03:26Zhttp://stackoverflow.com/feeds/user/24390http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/182393/xml-configuration-versus-annotation-based-configuration4Xml configuration versus Annotation based configurationAbarax2008-10-08T12:06:00Z2009-06-12T13:59:56Z
<p>In a few large projects i have been working on lately it seems to become increasingly important to choose one or the other (XML or Annotation). As projects grow, consistency is very important for maintainability. </p>
<p>My question is, what do people prefer. Do you prefer XML based or Annotation based? or Both? Everybody talks about XML configuration hell and how annotations are the answer, what about Annotation configuration hell?</p>
http://stackoverflow.com/questions/186118/eclipse-fonts-and-background-color3Eclipse fonts and background colorAbarax2008-10-09T06:26:09Z2008-12-16T11:35:35Z
<p>I have been trying to change the background color of eclipses windows to black and customize the font colors. There doesn't seem to be a way to do this at least not an obvious way. I am using version 3.3.</p>
<p>Does anyone know how to do this or of any plugin's that might be able to assist in doing this?</p>
http://stackoverflow.com/questions/361455/subtraction-of-mysql-times-inconsistent-on-different-machines2Subtraction of MySQL times inconsistent on different machines.Abarax2008-12-11T23:47:32Z2008-12-12T05:02:41Z
<p>I have a MySQL query structured as follows:</p>
<pre><code>SELECT time(c.start_time),
time(c.end_time),
time(c.end_time) - time(c.start_time) as 'opening_hours'
FROM my_shop c;
</code></pre>
<p>The data in start and end time is 1970-01-01 07:00:00 and 1970-01-01 19:00:00 respectively.</p>
<p>On my local machine this this query returns:</p>
<pre><code>| 07:00:00 | 19:00:00 | 12 |
</code></pre>
<p>However on a remote machine (production) it is returning</p>
<pre><code>| 07:00:00 | 19:00:00 | 120000 |
</code></pre>
<p>Any ideas as to why this might be happening and how to fix it? </p>
<p>Both sets of data are identical and too the best of my knowledge both MySQL installations are identical.</p>
<p>Any help is much appreciated.</p>
<p>Update: </p>
<p>It would seem that the versions of MySQL are slightly different: 5.0.27-community-nt versus 5.0.51b-community-nt. This is most probably the reason why.</p>
<p>djt has raised a good point in that Bill's solution does not take into account minutes. As well as this djt's solution is not quite what i need. </p>
<p>So i guess the question has morphed into how to subtract two times including minutes such that:</p>
<pre><code>1970-01-01 19:00:00 - 1970-01-01 07:00:00 = 12
1970-01-01 19:00:00 - 1970-01-01 07:30:00 = 11.5
1970-01-01 19:00:00 - 1970-01-01 07:45:00 = 11.25
</code></pre>
<p>etc.</p>
http://stackoverflow.com/questions/361455/subtraction-of-mysql-times-inconsistent-on-different-machines/361933#3619330Answer by Abarax for Subtraction of MySQL times inconsistent on different machines.Abarax2008-12-12T04:53:26Z2008-12-12T05:02:41Z<p>Is there a better solution than this:</p>
<pre><code>SELECT EXTRACT(HOUR FROM TIMEDIFF(TIME(c.end_time), TIME(c.start_time)))
+ ((EXTRACT(MINUTE FROM TIMEDIFF(TIME(c.end_time), TIME(c.start_time))))/60)
FROM my_shop c;
</code></pre>
http://stackoverflow.com/questions/335624/can-you-have-byref-arguments-in-as3-functions/335710#335710-2Answer by Abarax for Can you have "ByRef" arguments in AS3 functions?Abarax2008-12-02T22:35:30Z2008-12-02T22:35:30Z<p>Like LiraNuna said, almost everything in AS3 is pass by ref.</p>
http://stackoverflow.com/questions/268425/how-can-i-reference-ant-home-from-the-libraries-in-the-properties-of-a-project-wh/322633#3226331Answer by Abarax for How can I reference ANT HOME from the libraries in the properties of a project when using eclipse?Abarax2008-11-27T00:37:19Z2008-11-27T00:37:19Z<p>Your project should not have a dependency on eclipse's version of Ant in the first place, you should keep your own version so as to decouple your project from eclipse. What if a developer or yourself decides to use intelliJ?</p>
<p>Although i don't know what the nature of your project is, i would have thought all dependencies should be added to your projects lib directory or something similar.</p>
http://stackoverflow.com/questions/267721/mysql-strip-time-component-from-datetime1Mysql strip time component from datetimeAbarax2008-11-06T05:29:35Z2008-11-06T05:52:35Z
<p>I need to do a date comparison in Mysql without taking into account the time component i.e. i need to convert '2008-11-05 14:30:00' to '2008-11-05'</p>
<p>Currently i am doing this:</p>
<pre><code>SELECT from_days(to_days(my_date))
</code></pre>
<p>Is there a proper way of doing this?</p>
http://stackoverflow.com/questions/199428/hibernate-delete-cascade/199683#1996831Answer by Abarax for Hibernate Delete CascadeAbarax2008-10-14T01:13:20Z2008-10-16T03:51:11Z<p>Straight from the <a href="http://www.hibernate.org/hib_docs/nhibernate/html/example-parentchild.html#example-parentchild-cascades" rel="nofollow">documentation</a>. This explains your problem exactly i believe:</p>
<p>However, this code</p>
<pre><code>Parent p = (Parent) session.Load(typeof(Parent), pid);
// Get one child out of the set
IEnumerator childEnumerator = p.Children.GetEnumerator();
childEnumerator.MoveNext();
Child c = (Child) childEnumerator.Current;
p.Children.Remove(c);
c.Parent = null;
session.Flush();
</code></pre>
<p>will not remove c from the database; it will only remove the link to p (and cause a NOT NULL constraint violation, in this case). You need to explicitly Delete() the Child.</p>
<pre><code>Parent p = (Parent) session.Load(typeof(Parent), pid);
// Get one child out of the set
IEnumerator childEnumerator = p.Children.GetEnumerator();
childEnumerator.MoveNext();
Child c = (Child) childEnumerator.Current;
p.Children.Remove(c);
session.Delete(c);
session.Flush();
</code></pre>
<p>Now, in our case, a Child can't really exist without its parent. So if we remove a Child from the collection, we really do want it to be deleted. For this, we must use cascade="all-delete-orphan".</p>
<pre><code><set name="Children" inverse="true" cascade="all-delete-orphan">
<key column="parent_id"/>
<one-to-many class="Child"/>
</set>
</code></pre>
<p>Edit: </p>
<p>With regards to the inverse stuff, i believe this only determines how the sql is generated, see this <a href="http://simoes.org/docs/hibernate-2.1/155.html" rel="nofollow">doc</a> for more info.</p>
<p>One thing to note is, have you got </p>
<pre><code>not-null="true"
</code></pre>
<p>on the many-to-one relationship in your hibernate config?</p>
http://stackoverflow.com/questions/199624/scp-via-java/199643#1996432Answer by Abarax for scp via javaAbarax2008-10-14T00:57:37Z2008-10-14T00:57:37Z<p>Take a look<a href="http://kickjava.com/src/org/apache/tools/ant/taskdefs/optional/ssh/Scp.java.htm" rel="nofollow"> here </a></p>
<p>That is the source code for Ants' SCP task. The code in the "execute" method is where the nuts and bolts of it are. This should give you a fair idea of what is required. It uses JSch i believe.</p>
<p>Alternatively you could also directly execute this Ant task from your java code.</p>
http://stackoverflow.com/questions/54886/hidden-features-of-eclipse/199535#1995351Answer by Abarax for Hidden features of EclipseAbarax2008-10-14T00:17:29Z2008-10-14T00:17:29Z<p>ALT+Shift+X + T </p>
<p>This will run your current file as a unit test.</p>
http://stackoverflow.com/questions/189947/how-to-detect-intermittent-time-out-problem-in-web-applications/190134#1901340Answer by Abarax for How to detect intermittent time out problem in web applications?Abarax2008-10-10T04:37:13Z2008-10-10T04:37:13Z<p>Use the tool <a href="http://www.wireshark.org/download.html" rel="nofollow">Wireshark</a>.</p>
<p>Install this tool on each tier and watch the http traffic and packets. This worked for me when debugging a time out issue which actually turned out to be an issue with empty SOAP envelopes.</p>
<p>Doing this will at least tell you which tier the issue is with.</p>
http://stackoverflow.com/questions/184618/what-is-the-best-comment-in-source-code-you-have-ever-encountered/190046#19004690Answer by Abarax for What is the best comment in source code you have ever encountered?Abarax2008-10-10T03:43:18Z2008-10-10T03:43:18Z<pre><code>// I am not sure if we need this, but too scared to delete.
</code></pre>
http://stackoverflow.com/questions/189787/how-to-format-methods-with-large-parameter-lists2How to format methods with large parameter listsAbarax2008-10-10T01:14:41Z2008-10-10T02:49:04Z
<p>I have never seen a way to do this nicely, i would be interested in seeing how others do it. Currently i format it like this:</p>
<pre><code>public Booking createVehicleBooking(Long officeId,
Long start,
Long end,
String origin,
String destination,
String purpose,
String requirements,
Integer numberOfPassengers) throws ServiceException {
/*..Code..*/
}
</code></pre>
http://stackoverflow.com/questions/189816/how-can-i-setup-a-proxy-connection-in-solaris-server/189833#1898331Answer by Abarax for How can I setup a proxy connection in Solaris server?Abarax2008-10-10T01:33:58Z2008-10-10T01:33:58Z<p>set this as an environment variable:</p>
<pre><code>> export http_proxy="http://domain_url\\username:password@proxy_url"
</code></pre>
http://stackoverflow.com/questions/189694/how-to-keep-row-order-with-sqlbulkcopy/189728#1897280Answer by Abarax for How to keep row order with SqlBulkCopy?Abarax2008-10-10T00:41:15Z2008-10-10T00:47:09Z<p>If you can save the excel spreadsheet as a CSV it is very easy to generate a list of INSERT statements with any scripting language which will be executed in the exact same order as the spreadsheet. Here's a quick example in Groovy but any scripting language will do it just as easily if not easier:</p>
<pre><code>def file1 = new File('c:\\temp\\yourSpreadsheet.csv')
def file2 = new File('c:\\temp\\yourInsertScript.sql')
def reader = new FileReader(file1)
def writer = new FileWriter(file2)
reader.transformLine(writer) { line ->
fields = line.split(',')
text = """INSERT INTO table1 (col1, col2, col3) VALUES ('${fields[0]}', '${fields[1]}', '${fields[2]}');"""
}
</code></pre>
<p>You can then execute your "yourInsertScript.sql" against your database and your order will be the same as your spreadsheet.</p>
http://stackoverflow.com/questions/189644/what-are-some-common-things-to-consider-when-developing-a-web-based-application-t/189691#1896913Answer by Abarax for What are some common things to consider when developing a web-based application to be soldAbarax2008-10-10T00:27:42Z2008-10-10T00:27:42Z<p>The most important thing is to design it in such a way that it is completely generic i.e. there is no client specific information hard coded or embedded. </p>
<p>Anything client specific must be configurable through meta-data. How you do this is completely up to you, but the main ways are through XML, Database or properties files.</p>
<p>If you design it this way it could be on sold to any number of clients who will each have their own configuration files or data.</p>
http://stackoverflow.com/questions/186945/importing-delphi-web-services-into-java/187166#1871660Answer by Abarax for Importing Delphi Web Services into JavaAbarax2008-10-09T13:06:47Z2008-10-09T13:06:47Z<p>A couple of questions:
What do you mean by import the webservice?
Are you trying to comsume it in a java application?
What technology stack are you using? or are you just using plain java?</p>
http://stackoverflow.com/questions/186968/map-ssh-drive-in-windows/187151#1871511Answer by Abarax for Map SSH drive in WindowsAbarax2008-10-09T13:02:03Z2008-10-09T13:02:03Z<p>If you want to access and read server logs on a remote machine that is running an ssh server (daemon) you can use the free SSH tool PuTTY.</p>
<p>Just connect to the server, browse to the log file and view the log using a text editor such as 'Vi' or if you want to view it in real time use the command:</p>
<pre><code>> tail -f /logdirectory/test.log
</code></pre>
http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/185935#185935-4Answer by Abarax for What are Code Smells? What is the best way to correct them?Abarax2008-10-09T04:22:29Z2008-10-09T04:22:29Z<p>God objects.</p>
http://stackoverflow.com/questions/185594/java-generics-syntax-for-arrays/185633#1856330Answer by Abarax for Java Generics Syntax for arraysAbarax2008-10-09T01:49:29Z2008-10-09T03:55:29Z<p>You are correct in saying: </p>
<blockquote>
<p>After running some tests, I determined the declaration means an array where each element is an ArrayList object.</p>
</blockquote>
<p>Executing this code</p>
<pre><code>List<ArrayList>[] myArray = new ArrayList[2];
myArray[0] = new ArrayList<String>();
myArray[0].add("test 1");
myArray[1] = new ArrayList<String>();
myArray[1].add("test 2");
print myArray;
</code></pre>
<p>Produces this result:</p>
<pre><code>{["test 1"], ["test 2"]}
</code></pre>
<p>It seems to me there is no reason not to do this instead:</p>
<pre><code>List<ArrayList> myArray = new ArrayList<ArrayList>();
</code></pre>
http://stackoverflow.com/questions/164174/opinions-regarding-case-complete-or-use-case-software-competitors/185870#1858701Answer by Abarax for Opinions regarding 'Case Complete' or Use Case software competitorsAbarax2008-10-09T03:44:45Z2008-10-09T03:44:45Z<p>After much research we settled on using Case Complete for a fairly large and complex project and haven't looked back since, it is both easy to use and intuitive. The document generation has been especially helpful. </p>
<p>We store all the project files/artifacts in subversion so that multiple people can work on the case complete project at one time. We have templates that generate our documentation from case complete projects, no maintaining of massive word documents.</p>
<p>I would definitely recommend it.</p>
http://stackoverflow.com/questions/181810/how-do-i-unit-test-a-custom-ant-task/185806#1858061Answer by Abarax for How do I unit test a custom ant task?Abarax2008-10-09T03:15:14Z2008-10-09T03:15:14Z<p>Looking at the Ant source code these are the two relevent classes: <a href="http://www.docjar.com/html/api/org/apache/tools/ant/ProjectComponent.java.html" rel="nofollow">ProjectComponent</a> and <a href="http://www.docjar.com/html/api/org/apache/tools/ant/Task.java.html" rel="nofollow">Task</a></p>
<p>You are calling the log method from Task: </p>
<pre><code>public void log(String msg) {
log(msg, Project.MSG_INFO);
}
</code></pre>
<p>Which calls:</p>
<pre><code>public void log(String msg, int msgLevel) {
if (getProject() != null) {
getProject().log(this, msg, msgLevel);
} else {
super.log(msg, msgLevel);
}
}
</code></pre>
<p>Since you do not have project set it will call "super.log(msg, msgLevel)"</p>
<pre><code>public void log(String msg, int msgLevel) {
if (getProject() != null) {
getProject().log(msg, msgLevel);
} else {
// 'reasonable' default, if the component is used without
// a Project ( for example as a standalone Bean ).
// Most ant components can be used this way.
if (msgLevel <= Project.MSG_INFO) {
System.err.println(msg);
}
}
}
</code></pre>
<p>It looks like this may be your problem. Your task needs a project context.</p>
http://stackoverflow.com/questions/185591/newbie-in-java/185602#1856020Answer by Abarax for Newbie in JavaAbarax2008-10-09T01:30:39Z2008-10-09T01:30:39Z<p>Perhaps getstring() should be getString()?</p>
<p>Basically it is saying InternalFrameDemo has no getstring() method.</p>
http://stackoverflow.com/questions/151152/annotated-spring-mvc-controller-not-recognized-when-controller-extends-interface/185587#1855870Answer by Abarax for Annotated Spring-MVC controller not recognized when controller extends interfaceAbarax2008-10-09T01:23:53Z2008-10-09T01:23:53Z<p>I think you'll find that the problem is to do with inheritance and using annotations, they do not mix well. </p>
<p>Have you tried to implement the above using inheritance and SimpleFormController with all other details configured in your application context? This will at least narrow down the problem to an annotations and inheritance issue.</p>
http://stackoverflow.com/questions/185486/which-eclipse-subversion-plugin-should-i-use/185519#1855190Answer by Abarax for Which Eclipse Subversion plugin should I use?Abarax2008-10-09T00:48:49Z2008-10-09T00:48:49Z<p>Personally i use subversive. It has better usability features, mainly intuitive keyboard shortcuts etc. </p>
<p>I have never had a problem using either though. It really is just a combination of personal preference and usage though, if you're using advanced complex features it might matter which one you choose, but if your just checking in, checking out and synchronizing they will both meet your needs.</p>
http://stackoverflow.com/questions/185327/oracle-joins-left-outer-right-etc-s/185425#1854252Answer by Abarax for Oracle joins ( left outer, right, etc. :S ) Abarax2008-10-09T00:00:49Z2008-10-09T00:07:52Z<p>I think this should do it. </p>
<p>The first part gets all records that are new, not closed and not in progress. The second part gets all in progress records. We then join them together, we can also sort by identifier by wrapping a 'SELECT * FROM' around this query.</p>
<pre><code>select
a.identifier,
a.participant,
a.closedate as start
from
performance a
where
a.activity = 1
and not exists ( select identifier
from performance b
where b.activity = 4
and b.identifier = a.identifier)
and not exists ( select identifier
from performance c
where c.activity = 2
and c.identifier = a.identifier)
UNION ALL
select
a.identifier,
a.participant,
a.closedate as start
from
performance a
where
a.activity = 2
and not exists ( select identifier
from performance b
where b.activity = 4
and b.identifier = a.identifier);
</code></pre>
http://stackoverflow.com/questions/180242/how-can-i-copy-a-mysql-database-in-ruby-on-rails/182589#1825892Answer by Abarax for How can I copy a mySQL Database in ruby on rails?Abarax2008-10-08T12:56:51Z2008-10-08T12:56:51Z<p>I'm not sure what you mean but you can use ruby's command line functionality to dump the template database, create a new database and re-import it using the <a href="http://dev.mysql.com/doc/refman/5.0/en/mysqldump.html" rel="nofollow">mysqldump</a> program:</p>
<pre><code>> mysqldump -uroot -proot templateDB > dump.sql
> mysql -uroot -proot --execute="CREATE DATABASE newDB"
> mysql -uroot -proot newDB < dump.sql
</code></pre>
<p><a href="http://blog.jayfields.com/2006/06/ruby-kernel-system-exec-and-x.html" rel="nofollow">Here</a> is a good description of invoking command line options from Ruby.</p>
http://stackoverflow.com/questions/6392/java-time-zone-is-messed-up/182437#1824371Answer by Abarax for Java Time Zone is messed upAbarax2008-10-08T12:18:05Z2008-10-08T12:18:05Z<p>I had a similar issue, possibly the same one. However my tomcat server runs on a windows box so the symlink solution will not work. </p>
<p>I set "-Duser.timezone=Australia/Sydney" in the JAVA_OPTS however tomcat would not recognize that DST was in effect. As a workaround i changed Australia/Sydney (+10 GMT) to Pacific/Numea (+11 GMT) so that times would correctly display however i would love to know the actual solution or bug, if any.</p>
http://stackoverflow.com/questions/8968/what-oss-project-should-i-look-at-if-i-need-to-do-spring-friendly-workflow/182346#1823461Answer by Abarax for What OSS project should I look at if I need to do Spring friendly WorkFlow?Abarax2008-10-08T11:55:53Z2008-10-08T11:55:53Z<p>Like Brian said if you're doing anything of great complexity you might look at using BPEL. </p>
<p>There are a number of open source BPEL engines, one that comes to mind is <a href="http://ode.apache.org/" rel="nofollow">Apache Orchestration Director Engine </a></p>
http://stackoverflow.com/questions/123/csv-file-to-xml/161058#1610581Answer by Abarax for CSV File to XMLAbarax2008-10-02T06:08:16Z2008-10-02T06:08:16Z<p>You can do this exceptionally easily using Groovy and the code is very readable. </p>
<p>Basically the text variable will be written to contacts.xml for each line in the contactData.csv and the fields array contains each column.</p>
<pre><code>def file1 = new File('c:\\temp\\ContactData.csv')
def file2 = new File('c:\\temp\\contacts.xml')
def reader = new FileReader(file1)
def writer = new FileWriter(file2)
reader.transformLine(writer) { line ->
fields = line.split(',')
text = """<CLIENTS>
<firstname> ${fields[2]} </firstname>
<surname> ${fields[1]} </surname>
<email> ${fields[9]} </email>
<employeenumber> password </employeenumber>
<title> ${fields[4]} </title>
<phone> ${fields[3]} </phone>
</CLIENTS>"""
</code></pre>
<p>}</p>
http://stackoverflow.com/questions/361455/subtraction-of-mysql-times-inconsistent-on-different-machines/361586#361586Comment by Abarax on Subtraction of MySQL times inconsistent on different machines.Abarax2008-12-12T00:58:29Z2008-12-12T00:58:29ZInteresting, this yields "12:00:00" which i guess is what my query is returning on that specific machine without the colons. Perhaps there is a date formatting setting in MySQL's configuration that is different. Any ideas?http://stackoverflow.com/questions/361455/subtraction-of-mysql-times-inconsistent-on-different-machines/361582#361582Comment by Abarax on Subtraction of MySQL times inconsistent on different machines.Abarax2008-12-12T00:55:13Z2008-12-12T00:55:13ZThis will work on the desired machine. Ideally i do not want to change code but i suppose if this is the only solution then so be it. I would still really like to know why this is happening though it is quite perplexing. http://stackoverflow.com/questions/199428/hibernate-delete-cascade/199683#199683Comment by Abarax on Hibernate Delete CascadeAbarax2008-10-16T04:09:29Z2008-10-16T04:09:29ZI added some extra info for you. Glad this has worked for you :)http://stackoverflow.com/questions/199598/100-in-memory-hsql-databaseComment by Abarax on 100% in-memory HSQL databaseAbarax2008-10-14T00:45:40Z2008-10-14T00:45:40Zand are you using Hibernate to create the tables? or JDBC?http://stackoverflow.com/questions/199598/100-in-memory-hsql-databaseComment by Abarax on 100% in-memory HSQL databaseAbarax2008-10-14T00:45:04Z2008-10-14T00:45:04ZWhich log are you talking about?http://stackoverflow.com/questions/96981/color-themes-for-eclipseComment by Abarax on Color Themes for Eclipse?Abarax2008-10-14T00:27:37Z2008-10-14T00:27:37ZIt is actually possible.http://stackoverflow.com/questions/189787/how-to-format-methods-with-large-parameter-lists/189834#189834Comment by Abarax on How to format methods with large parameter listsAbarax2008-10-10T02:03:08Z2008-10-10T02:03:08ZUnfortunately i do not think i can get away with this because this is a SOAP endpoint for a web service, but very informative nonetheless. http://stackoverflow.com/questions/186118/eclipse-fonts-and-background-color/186753#186753Comment by Abarax on Eclipse fonts and background colorAbarax2008-10-09T23:14:31Z2008-10-09T23:14:31ZThankyou, this works well for the java editor. I was looking for more of a blanket change though, to everything.http://stackoverflow.com/questions/180242/how-can-i-copy-a-mysql-database-in-ruby-on-rails/182589#182589Comment by Abarax on How can I copy a mySQL Database in ruby on rails?Abarax2008-10-09T03:46:33Z2008-10-09T03:46:33ZDid my answer work for you? or at least help?http://stackoverflow.com/questions/185327/oracle-joins-left-outer-right-etc-s/185425#185425Comment by Abarax on Oracle joins ( left outer, right, etc. :S ) Abarax2008-10-09T00:32:28Z2008-10-09T00:32:28ZGreat news! I'm glad i finally helped someone on here :Dhttp://stackoverflow.com/questions/182393/xml-configuration-versus-annotation-based-configuration/182405#182405Comment by Abarax on Xml configuration versus Annotation based configurationAbarax2008-10-08T12:36:34Z2008-10-08T12:36:34ZThe fact that annotations are a compile time thing is a pro of annotation based config, however both annotations and xml are methods for configuration and in this context they achieve the same thing. eg. configuring hibernate mappings in an xml file as opposed to using annotations on the class.