Andrew Swan
|
Registered User
|
Development Manager at Business Information Services Pty Ltd.
|
|
2d |
awarded | ● Popular Question |
|
Dec 12 |
awarded | ● Notable Question |
|
Dec 12 |
comment |
Great programming quotes All your base are belong to us. |
|
Dec 12 |
comment |
Great programming quotes Or if you want to win the Olympic high jump, you get one guy that can jump 10 feet, not 10 guys that can jump one foot. |
|
Dec 8 |
comment |
Optimistic vs. Pessimistic locking Optimistic locking doesn't necessarily use a version number. Other strategies include using (a) a timestamp or (b) the entire state of the row itself. The latter strategy is ugly but avoids the need for a dedicated version column, in cases where you aren't able to modify the schema. |
|
Dec 8 |
awarded | ● Nice Question |
|
Nov 24 |
accepted | Getting the absolute path of a file within a JAR within an EAR? |
|
Nov 24 |
comment |
Efficient way to implement singleton pattern in Java Downvoted because? |
|
Nov 23 |
comment |
Why does my OpenID app receive different Google OpenIDs from different client machines for the same user? Point #1 solved it for me. When I tested my app from the server, I used the URL localhost/myapp, but from a 2nd machine I used server_name/my app. What I didn't realise was that Google would see this as two different realms and therefore return different identities for the same Google user. When I switched my app to use SSL, I had to use "server_name" in the URL even from the server itself because of the SSL certificate, and when it then started working I wrongly assumed it was thanks to SSL, not because of using the same host name from both machines. Thanks for your help! |
|
Nov 23 |
comment |
Great programming quotes Yes, his contribution to programming is definitely worth more than a nickel. |
|
Nov 23 |
asked | Why does my OpenID app receive different Google OpenIDs from different client machines for the same user? |
|
Nov 22 |
comment |
Janrain’s PHP-OpenID and Google/Yahoo Because this site is in Question/Answer format, rather than being an open discussion forum, you should probably post this as a new question in its own right rather than an answer to someone else's question. Otherwise people will either down-vote it or simply ignore it. |
|
Nov 13 |
revised |
Tab character in Java edited tags |
|
Nov 13 |
comment |
Performing an action when an JMenuItem is clicked? It's best to ask this as a separate question than as the "answer" to an existing question. |
|
Nov 6 |
awarded | ● Great Answer |
|
Oct 28 |
comment |
In HTTP, what is REST? Actually a better URL in that case would be myhost/pictures/3 |
|
Oct 28 |
comment |
How to get Cobertura to fail M2 build for low code coverage I replicated your success using your config, so now I just have to integrate it into my real projects. BTW, there are several differences between my config and yours, e.g. my "executions" tag is a child of my "configuration" tag, whereas yours is a sibling (as in the book; I don't know why I deviated from that). |
|
Oct 28 |
revised |
How to get Cobertura to fail M2 build for low code coverage Tidied the XML |
|
Oct 28 |
comment |
Best technology for adding plugin support to a J2SE application? I haven't used it yet, but will post back here once I do. |
|
Oct 19 |
comment |
SOAP or REST The only allowed verbs are "get", "put", and "delete"? What about POST and OPTIONS? |
|
Oct 16 |
comment |
Scalability implications of converting stateless session beans to POJOs @Jim: I've updated the question. But your comment seems to imply that a singleton couldn't service multiple threads - is this really the case? This gets to the heart of my question; how will using one POJO compare in scalability terms to using a pooled SLSB? Will some threads have to wait to use the POJO until others have finished? |
|
Oct 16 |
revised |
Scalability implications of converting stateless session beans to POJOs expanded on the environment |
|
Oct 15 |
awarded | ● Notable Question |
|
Oct 13 |
comment |
Ideas on database design for capturing audit trails Nitpick: you mean "from" and "to", not "from" and "too". |
|
Oct 9 |
comment |
Scalability implications of converting stateless session beans to POJOs This answer: stackoverflow.com/questions/134791/… claims there would be "a lot of contention and blocking", but there's no corroboration, citation, or even up-voting of that statement, so I don't know how much weight to give it (no offence to Mwanji intended). |
|
Oct 9 |
asked | Scalability implications of converting stateless session beans to POJOs |
|
Oct 8 |
accepted | How to find static method calls in large Java project? |
|
Oct 8 |
answered | How to find static method calls in large Java project? |
|
Oct 7 |
comment |
How to find static method calls in large Java project? Thanks, but I'm looking for a non-commerical solution; I've updated the question accordingly. |
|
Oct 7 |
revised |
How to find static method calls in large Java project? clarified I want a free solution |
|
Oct 6 |
comment |
How to find static method calls in large Java project? If you'd care to add that idea as an answer, I'll give you an up vote! :) |
|
Oct 6 |
comment |
How to find static method calls in large Java project? No, having found an undesirable static method call, I would refactor to remove it, e.g. by using DI to inject an instance of the class containing the static method. But that's all outside the scope of the question; right now I just want to be able to find such static method calls. |
|
Oct 6 |
comment |
How to find static method calls in large Java project? I considered FindBugs too, but presumably I would have to write my own checker module (or whatever their plugins are called)? |
|
Oct 6 |
revised |
How to find static method calls in large Java project? clarified the question |
|
Oct 6 |
comment |
How to find static method calls in large Java project? The problem is that I don't know where the static method are. So your answer would first require me to search for them; I was hoping to search directly for the static method calls themselves, if possible, as it would be more direct. |
|
Oct 6 |
comment |
How to find static method calls in large Java project? I also want to find any calls made to methods outside my project, for example the infamous javax.mail.Transport#send methods. Also your answer suggests that I already know where the static methods are, so that I can comment them out in the first place. |
|
Oct 6 |
asked | How to find static method calls in large Java project? |
|
Sep 22 |
awarded | ● Civic Duty |
|
Sep 16 |
comment |
Using Mockito to test abstract classes I've always used EasyMock, but have started exploring Mockito; it looks a lot cleaner! |
|
Sep 16 |
awarded | ● Yearling |
|
Sep 10 |
comment |
Best enterprise repository tool for Maven 2? You should definitely post these as questions rather than as answers to someone else's question. The format here is strictly Q&A, it's not like a discussion forum. This isn't bureaucracy, it's to make it easier both for people to answer you and for others with the same questions to find those answers themselves. |
|
Sep 9 |
comment |
Classloader issues - How to determine which library versions (jar-files) are loaded For JBoss at least, it's not as simple as that. In some cases JBoss will load a class from outside your WAR file (e.g from server/default/lib) even though the class exists inside your WAR file. It depends on various factors such as whether scoped loading is enabled (the default value for which varies between JBoss versions) and whether delegation to the parent class repository is enabled. |
|
Sep 9 |
revised |
Jar within War - NoClassDefFound Exception added another URL |
|
Sep 9 |
revised |
Jar within War - NoClassDefFound Exception edited tags |
|
Sep 9 |
answered | Jar within War - NoClassDefFound Exception |
|
Sep 9 |
comment |
How to exclude all transitive dependencies of a Maven dependency Wow, the accepted answer has net -1 votes! :-) |
|
Sep 4 |
revised |
Version-controlling version-specific files specified which VCS |
|
Sep 4 |
comment |
Version-controlling version-specific files It's almost like we need a three-dimensional version control system, where each code revision (i.e. node in the development tree) can itself have a branch for non-code files like those mentioned above... |
|
Sep 4 |
asked | Version-controlling version-specific files |
|
Sep 4 |
comment |
Policy on maintenance releases vs normal releases? That's what we're currently doing, but you haven't said how you minimise the pain of creating maintenance releases for multiple previous versions. How many installed customers are you talking about? |
