User rich - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T16:06:26Zhttp://stackoverflow.com/feeds/user/25502http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/296294/installed-package-with-maven/296315#2963154Answer by rich for Installed package with Mavenrich2008-11-17T17:49:22Z2009-09-19T23:19:46Z<p>Here is a sample using the <code>mvn install</code> goal. I used windows style env vars in place of parameters you will need to provide.</p>
<pre><code>mvn install:install-file -DgroupId=%DERBYTOOLS_GROUP_ID% \
-DartifactId=%DERBYTOOLS_ARTIFACT_ID% \
-Dversion=%DERBYTOOLS_VERSION% \
-Dpackaging=jar \
-Dfile=%DERBYTOOLS_FILE_PATH%
</code></pre>
http://stackoverflow.com/questions/108631/what-is-your-single-favorite-development-tool/296156#2961562Answer by rich for What is your single favorite development tool?rich2008-11-17T16:57:36Z2009-08-20T15:50:58Z<p>My keyboard ;-)</p>
<p>... actually, my favorite is the <a href="http://en.wikipedia.org/wiki/IntelliJ%5FIDEA" rel="nofollow">IntelliJ IDEA</a>.</p>
http://stackoverflow.com/questions/1028095/how-can-i-exchange-the-first-and-last-characters-of-a-string-in-java/1028458#10284582Answer by rich for How can I exchange the first and last characters of a string in Java?rich2009-06-22T17:29:18Z2009-06-22T17:29:18Z<p>You could use a regex..</p>
<pre><code>return str.replaceFirst("(.)(.*)(.)", "$3$2$1");
</code></pre>
http://stackoverflow.com/questions/1023198/java-program-to-monitor-the-website-that-i-have-made-using-j2ee/1024249#10242490Answer by rich for Java Program, to monitor the website that i have made using J2EE..rich2009-06-21T16:23:07Z2009-06-21T16:23:07Z<p>Here is a small example of getting info from a <code>HttpServletRequest</code> using a <code>ServletRequestListener</code>.</p>
<p>First, add the listener to the web.xml config file. This file should be located in the WEB-INF folder.</p>
<pre><code>
<listener>
<description>RequestListener</description>
<listener-class>web.MyRequestListener</listener-class>
</listener>
</code></pre>
In the above configuration the <code>ServletRequestListener</code> named <code>MyRequestListener</code> is located in the <code>web</code> package.
<p>Next, create <code>MyRequestListener</code> in the <code>web</code> package as follows.</p>
<pre><code>
package web;
import javax.servlet.*;
public class MyRequestListener implements ServletRequestListener {
public void requestInitialized(ServletRequestEvent event) {
HttpServletRequest request = (HttpServletRequest)event.getServletRequest();
System.out.println("request initialized");
System.out.println("Request Remote Addr = " + request.getRemoteAddr());
System.out.println("Request Remote Host = " + request.getRemoteHost());
System.out.println("Request Remote Port = " + request.getRemotePort());
java.util.Enumeration e = request.getAttributeNames();
while(e.hasMoreElements()) {
String attName = (String)e.nextElement();
Object val = request.getAttribute(attName);
System.out.println("Request Att (" + attName + ") = " + val.toString());
}
e = request.getParameterNames();
while(e.hasMoreElements()) {
String paramName = (String)e.nextElement();
Object val = request.getParameter(paramName);
System.out.println("Request Param (" + paramName + ") = " + val.toString());
}
e = request.getHeaderNames();
while(e.hasMoreElements()) {
String headerName = (String)e.nextElement();
Object val = request.getHeader(headerName);
System.out.println("Header (" + headerName + ") = " + val.toString());
}
}
public void requestDestroyed(ServletRequestEvent event) {
System.out.println("request destroyed");
}
}
</code></pre>
All the code does is print out attributes, parameters, and info from the HTTP header. If you need the date for the request you can create a <code>java.util.Date</code> when <code>requestInitialized()</code> is entered.
<p>Keep in mind that a <code>ServletRequestListener</code>'s <code>requestInitialized()</code> will be called every time there is a HTTP request from a browser (or bot) so it may be better to use a tool external to your application to track usage. If you are looking for external tools you may want to consider <a href="http://www.google.com/analytics/" rel="nofollow">Google Analytics</a>, or <a href="http://www.google.com/urchin/index.html" rel="nofollow">Urchin</a> if your network configuration does not allow you to use Google Analytics.
</p>
http://stackoverflow.com/questions/1022567/maven-compile-groovy/1022589#1022589-1Answer by rich for maven compile groovyrich2009-06-20T21:23:22Z2009-06-20T21:23:22Z<p>You can partition your code in layers and have lower layers call upper layers but never vice versa. For example, in a Web app you can have a view layer, a service layer, and a persistence layer. The view layer calls the service layer and the service layer calls the persistence layer, but the persistence layer will never call the service layer or the view layer. If you want groovy/java code to exist in the same layer then make sure one calls the other but they don't both call each other. The bottom line is that you should avoid bi-directional dependencies.</p>
http://stackoverflow.com/questions/1022234/sorting-arrays-in-java/1022549#10225490Answer by rich for Sorting arrays in Java rich2009-06-20T21:03:23Z2009-06-20T21:03:23Z<p>While using two separate arrays and keeping their sort in sync is possible, using this type of solution may lead to bugs that are hard to find later on. For example, if the syncs between the arrays don't work correctly, then the wrong weights may be matched with the heights.</p>
<p>One way to avoid this type of problem is to encapsulate the height/weight in a class so they will always be in sync. In Figure 1 there is a class named <code>Person</code> that has height, weight, and name as attributes. If you are always going to sort by height ascending, then you can implement the <code>compareTo()</code> method as shown in Figure 1.</p>
<p>Figure 2 shows a junit test case to demonstrate how to sort a list of <code>Person</code>s. The test case also demonstrates how to sort by weight. In both cases there is never a sync issue between weight and height since the sort is on the object that encapsulates them.</p>
<p>
Figure 1 - <code>Person</code> class</p>
<pre><code>
public class Person implements Comparable {
private Float height;
private Float weight;
private String name;
public Person(){}
public Person(Float height, Float weight, String name) {
this.height = height;
this.weight = weight;
this.name = name;
}
public Float getHeight() {
return height;
}
public void setHeight(Float height) {
this.height = height;
}
public Float getWeight() {
return weight;
}
public void setWeight(Float weight) {
this.weight = weight;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int compareTo(Person other) {
//sort by height ascending
return this.height.compareTo(other.getHeight());
}
}
</code></pre>
<p>Figure 2 - junit test class</p>
<pre><code>
import junit.framework.TestCase;
import java.util.*;
public class PersonTest extends TestCase {
private List personList = new ArrayList();
public PersonTest(String name) {
super(name);
}
public void testCompareTo() {
personList.add(new Person(72F,125F,"Bob"));// expect 3rd when sorted by height asc
personList.add(new Person(69.9F,195F,"Jack"));// expect 2nd when sorted by height asc
personList.add(new Person(80.05F,225.2F,"Joe"));// expect 4th when sorted by height asc
personList.add(new Person(57.02F,89.9F,"Sally"));// expect 1st when sorted by height asc
Collections.sort(personList);
assertEquals("Sally should be first (sorted by height asc)",personList.get(0).getName(),"Sally");
assertEquals("Jack should be second (sorted by height asc)",personList.get(1).getName(),"Jack");
assertEquals("Bob should be third (sorted by height asc)",personList.get(2).getName(),"Bob");
assertEquals("Joe should be fourth (sorted by height asc)",personList.get(3).getName(),"Joe");
Collections.sort(personList,new Comparator() {
public int compare(Person p1, Person p2) {
//sort by weight ascending
return p1.getWeight().compareTo(p2.getWeight());
}
});
assertEquals("Sally should be first (sorted by weight asc)",personList.get(0).getName(),"Sally");
assertEquals("Bob should be second (sorted by weight asc)",personList.get(1).getName(),"Bob");
assertEquals("Jack should be third (sorted by weight asc)",personList.get(2).getName(),"Jack");
assertEquals("Joe should be fourth (sorted by weight asc)",personList.get(3).getName(),"Joe");
}
}
</code></pre>
<p></p>
http://stackoverflow.com/questions/950642/how-to-analyse-which-jar-file-is-used-in-a-java-program/950708#9507081Answer by rich for How to analyse which jar file is used in a JAVA program?rich2009-06-04T13:46:45Z2009-06-04T13:46:45Z<pre><code>System.getProperty("java.class.path");
</code></pre>
http://stackoverflow.com/questions/946178/should-developer-tools-languages-frameworks-etc-be-standardized-across-an-org4Should developer tools, languages, frameworks, etc. be standardized across an organization?rich2009-06-03T17:52:57Z2009-06-03T20:35:37Z
<p>The organization that I currently work for seems to be heading in the direction of dictating to software developers which tools, languages, frameworks, etc. must be used. However, nobody has convinced me that this is a good thing. The main argument I have heard is that it will make training easier. But, after developing software for over 10 years, I've never relied on training to learn how to use an IDE, programming language, or anything else; so I just can't relate. </p>
<p>With the rapid speed at which technology evolves, and the s-l-o-w-n-e-s-s at which I know the standards will adapt, I am concerned that my customers will have requirements that I won't be able to easily implement or won't be able to implement as efficiently as I should. For example, if there is a UI requirement for an auto-complete feature in a web app, and no API has been approved for this yet, I would need to implement auto-complete myself as opposed to using one of the many APIs that provide it out of the box. </p>
<p>A more radical example is if my customers wanted to have Google Wave features. In that case I would want the flexibility of configuring my development environment (including the IDE) and selecting appropriate frameworks (ex: GWT) to use. </p>
<p>Please provide feedback on whether or not you think that software developer tools, languages, etc should be standardized and a few points to support your argument.</p>
http://stackoverflow.com/questions/934509/java-equivalent-of-function-mapping-in-python/934676#9346761Answer by rich for Java equivalent of function mapping in Pythonrich2009-06-01T12:45:54Z2009-06-01T12:45:54Z<p>Polymorphic example..</p>
<pre><code>public interface Animal {public void speak();};
public class Dog implements Animal {public void speak(){System.out.println("treat? treat? treat?");}}
public class Cat implements Animal {public void speak(){System.out.println("leave me alone");}}
public class Hamster implements Animal {public void speak(){System.out.println("I run, run, run, but never get anywhere");}}
Map<String,Animal> animals = new HashMap<String,Animal>();
animals.put("dog",new Dog());
animals.put("cat",new Cat());
animals.put("hamster",new Hamster());
for(Animal animal : animals){animal.speak();}
</code></pre>
http://stackoverflow.com/questions/885656/jsp-usebean-request-scope-question/885693#8856930Answer by rich for JSP useBean Request scope questionrich2009-05-20T00:37:51Z2009-05-20T00:37:51Z<p>Yes. If you have scope="session" set in the useBean tag you should be able to pass it around from jsp to jsp as long as the session is valid.</p>
http://stackoverflow.com/questions/668158/pair-programming-means-double-cost-per-developer-is-it-worth-that-money/808164#8081642Answer by rich for Pair programming means double cost per developer. Is it worth that money?rich2009-04-30T17:39:01Z2009-04-30T17:39:01Z<p>It depends on the developers. Unfortunately, you can't just stick any two developers together and expect timely, high quality results. Not everybody is cut out for paired programming or even cut out for working in an agile development environment. Two things about paired programming that I think make it worth while are : (1) Cross-training between developers; and (2) Real-time peer reviews. Cross-training will help to strengthen the skills of the team as a whole, and real-time peer reviews can eliminate the need for formal peer reviews. I've learned more from my peers over the years than I ever learned at a technical training.</p>
http://stackoverflow.com/questions/668573/what-are-the-benefits-of-using-oracle-designer1What are the benefits of using Oracle Designer?rich2009-03-21T01:49:11Z2009-03-23T14:17:57Z
<p>Why would I want to use Oracle Designer as opposed to simply maintaining SQL scripts and storing them in a version control system such as subversion? I need to decide if it is worth the effort to reverse-engineer an existing database into Designer. It seems like it would be easier to store DDL scripts along with the application source code in subversion. The policy of my organization is to manage all database schemas using Designer. I'm all for compliance if there is some sort of ROI, but I am not able to see how there would be any ROI by reverse-engineering an existing database into Designer.</p>
http://stackoverflow.com/questions/436059/what-is-a-good-way-to-provide-a-different-user-experience-based-on-the-visitor-ty1What is a good way to provide a different user experience based on the visitor type?rich2009-01-12T16:47:34Z2009-01-12T18:24:36Z
<p>I am looking for a way to allow a Web application to provide a different user experience based on the type of visitor. For example, the same set of data should be presented differently to a child versus an adult. This is for a Java Web app.</p>
<p>Just wanted to provide more clarification. What I am hoping for is any best practice for handling all facets for providing a different user experience for different types of visitors (detection of type of visitor, different view presentation, different navigation). My data is hierarchical and traversing that data will most likely be different for different types of visitors. I am capable of coming up with a home grown solution, but I would be interested in any boiler plate solution or framework that would make it easier to implement and maintain. The application in question is a Java app that uses Struts/Tiles 1.x.</p>
http://stackoverflow.com/questions/299002/access-web-service-from-oracle-stored-procedure3Access Web service from Oracle stored procedurerich2008-11-18T15:08:43Z2009-01-09T22:44:43Z
<p>Is there anybody who has successfully accessed a Web service from an Oracle stored procedure? If so, was it a Java stored procedure? A PL/SQL stored procedure?</p>
<p>Is there any reason why I should not be trying to access a WS from a stored proc?</p>
<p>Here are a couple refs that I found so far</p>
<ul>
<li><a href="http://download.oracle.com/docs/cd/B19306_01/java.102/b14187/chtwelve.htm#CBBEFCHI" rel="nofollow">Database Web Services</a></li>
<li><a href="http://www.oracle.com/technology/sample_code/tech/java/jsp/samples/wsclient/Readme.html" rel="nofollow">Calling external Web Service from a Java Stored Procedure</a></li>
</ul>
<p><em>..Just to clarify, this is for SOAP calls</em></p>
http://stackoverflow.com/questions/341055/database-design-should-a-date-be-used-as-part-of-a-primary-key4Database design - Should a Date be used as part of a primary keyrich2008-12-04T15:47:21Z2008-12-04T19:26:34Z
<p>What are the pros/cons for including a date field as a part of a primary key?</p>
http://stackoverflow.com/questions/341639/does-my-development-box-mac-need-anti-virus-malware-products/341662#3416620Answer by rich for Does my development box (Mac) need anti-virus/ malware products?rich2008-12-04T18:49:43Z2008-12-04T18:49:43Z<p>At a minimum I would use a firewall and spyware cleaner. If you can live with AV hogging some of your resources it's certainly worth having. If you can't take the performance hit then you will need to be careful about what you do on your Mac. For example, peer-to-peer file sharing over the Internet is a good way to pick up viruses.</p>
http://stackoverflow.com/questions/341614/implements-in-uml/341628#3416281Answer by rich for implements in UMLrich2008-12-04T18:32:23Z2008-12-04T18:32:23Z<p>Here is a starUML tutorial that should help - <a href="http://cnx.org/content/m15092/latest/" rel="nofollow">http://cnx.org/content/m15092/latest/</a></p>
http://stackoverflow.com/questions/341464/what-are-the-alternatives-to-jstl/341581#3415811Answer by rich for What are the alternatives to JSTL?rich2008-12-04T18:12:36Z2008-12-04T18:12:36Z<p>Assuming you're looking for an easier way to develop an application using MVC I would highly recommend looking at the <a href="http://www.springframework.org/" rel="nofollow">Spring Framework</a>. Spring has its own tag lib that provides most of what you should need in the JSPs. I have had great success using Spring webflow along with the Spring forms tag lib. I like to divide the application up into a persistence layer (using Spring's ORM support for Hibernate), a service layer (business logic), and a view layer. The view layer includes the web flows, JSPs, and POJOs for validations and actions. I have also used DWR in the view layer for AJAX calls.</p>
http://stackoverflow.com/questions/341402/modifying-existing-code-whats-your-commenting-style/341419#3414195Answer by rich for Modifying existing code, what's your commenting style?rich2008-12-04T17:24:28Z2008-12-04T17:24:28Z<p>I avoid putting information about when/why code was modified in the source code. Instead I use a source code repository and include descriptive comments when I check code in. Your source files will get cluttered if you embed a change log.</p>
http://stackoverflow.com/questions/341059/which-is-the-better-method-allowing-the-thread-to-sleep-for-a-while-or-deleting/341104#3411043Answer by rich for Which is the better method? Allowing the thread to sleep for a while or deleting it and recreating it later?rich2008-12-04T15:59:41Z2008-12-04T15:59:41Z<p>Either should be fine but I would lean towards keeping the thread around for cases where the verification takes longer than expected (ex: slow network links or slow database response).</p>
http://stackoverflow.com/questions/340623/programming-to-an-interface-how-to-decide-where-its-needed/340636#3406363Answer by rich for Programming to an interface. How to decide where its needed?rich2008-12-04T13:53:05Z2008-12-04T13:53:05Z<p>If there is a good chance the app will become more complex it's easier to set up the scaffolding earlier rather than later. However, if the app is not complex and it's unlikely it won't become complex the ROI may not be there. You can always refactor later.</p>
http://stackoverflow.com/questions/340562/method-visibility-between-classes-in-java/340600#3406000Answer by rich for method visibility between classes in javarich2008-12-04T13:37:55Z2008-12-04T13:37:55Z<p>From an OO perspective I would say to use inheritance. One way is to create an abstract class that does not implement methods that will not behave the same by sub-classes; and implements methods that will behave the same for all sub-classes.</p>
http://stackoverflow.com/questions/333701/which-are-the-must-visit-daily-websites-for-programmers/335161#3351610Answer by rich for which are the must-visit-daily websites for programmers?rich2008-12-02T19:37:35Z2008-12-02T19:37:35Z<p>Here are some java-related feeds..</p>
<ul>
<li>The Server Side - http://feeds.feedburner.com/techtarget/tsscom/home</li>
<li>The Java Posse - http://feeds.feedburner.com/javaposse</li>
<li>Java Dot Net - http://weblogs.java.net/pub/q/weblogs_rss?x-ver=1.0</li>
<li>Spring Framework - http://springframework.org/node/feed</li>
<li>Cafe au Lait - http://www.cafeaulait.org/today.rss</li>
<li>Sun Java - http://developers.sun.com/rss/java.xml</li>
<li>DevX - http://services.devx.com/outgoing/javafeed.xml</li>
<li>OnJava - http://www.oreillynet.com/pub/feed/7?format=rss1</li>
<li>No Fluff Just Stuff Podcasts - http://www.nofluffjuststuff.com/s/podcast/itunes.xml</li>
<li>Spring Loaded - http://www.jroller.com/habuma/feed/entries/rss</li>
<li>Agile Developer / Java - http://www.agiledeveloper.com/blog/SyndicationService.asmx/GetRssCategory?categoryName=Java</li>
<li>Agile Developer / Groovy - http://www.agiledeveloper.com/blog/SyndicationService.asmx/GetRssCategory?categoryName=Groovy</li>
</ul>
http://stackoverflow.com/questions/334951/programatically-calculate-the-size-of-a-value-type/335110#3351100Answer by rich for Programatically calculate the size of a value typerich2008-12-02T19:19:30Z2008-12-02T19:19:30Z<p>I know you're trying to come up with a generic solution but,in this case I would take the lazy way out and hard code the size and add some comments.</p>
<pre>
static final int MAX_BITS_IN_MY_NUM = 8; // Currently set to size of a byte.
// Update if data type changes from byte to something larger than a byte.
...
assertTrue(MAX_BITS_IN_MY_NUM >= MyEnum.values().length);
</pre>
http://stackoverflow.com/questions/334852/sql-join-query-writing/334887#3348870Answer by rich for SQL JOIN query writingrich2008-12-02T18:07:05Z2008-12-02T18:07:05Z<pre>select p.name
from person p, friends f
where f.friend_id = p.person_id
and f.person_id = 1</pre>
http://stackoverflow.com/questions/306460/how-do-you-take-criticism/306576#3065761Answer by rich for How Do You Take Criticism?rich2008-11-20T19:40:38Z2008-11-20T19:40:38Z<p>After working on a project using psp/tsp where all of my strengths/weaknesses were exposed via a spreadsheet which tracked things like my task time (est vs actual), loc/hr and defect inject rate; and living through many design and code inspections; I welcome criticism. Facing your weaknesses can only make you stronger.</p>
http://stackoverflow.com/questions/305790/why-bundle-version-control-plugin-with-ide/305878#3058781Answer by rich for Why bundle version control plugin with IDE?rich2008-11-20T16:20:08Z2008-11-20T16:20:08Z<p>I have battle scars from using a buggy implementation of an IDE/VCS integration. In all honesty, if it was not buggy it would have been great. As long as there are great tools like TortoiseSVN, I don't see a need for IDE/VCS integration. I'd rather have more tools that do their job well than a few buggy tools.</p>
http://stackoverflow.com/questions/305285/servlet-containers-and-class-path/305303#3053032Answer by rich for Servlet containers and class pathrich2008-11-20T13:31:49Z2008-11-20T13:31:49Z<p>In your example bar.properties would need to be under the classes directory to be in the classpath.</p>
http://stackoverflow.com/questions/301493/which-language-is-easiest-and-fastest-to-work-with-xml-content/301859#3018592Answer by rich for Which language is easiest and fastest to work with XML content?rich2008-11-19T13:17:41Z2008-11-19T13:17:41Z<p>For quick turnaround I've found <a href="http://groovy.codehaus.org/Processing+XML" rel="nofollow">Groovy</a> very useful.</p>
http://stackoverflow.com/questions/301817/how-to-select-a-related-group-of-items-in-oracle-sql/301843#3018430Answer by rich for How to select a related group of items in Oracle SQLrich2008-11-19T13:10:45Z2008-11-19T13:10:45Z<p>If I understand correctly, here's an example I think does what you are looking for...</p>
<p>select * from my_table where link in
(select link
from my_table
where id = 'AA')
and id in ('AA','MASTER')</p>
http://stackoverflow.com/questions/699961/why-this-java-link-checker-code-does-not-compileComment by rich on Why this java link checker code does not compile?rich2009-07-30T12:44:46Z2009-07-30T12:44:46ZVoted up for updating code with correct solution.http://stackoverflow.com/questions/1025018/whats-the-best-way-to-implement-web-service-for-ajax-autocompleteComment by rich on What's the best way to implement web service for ajax autocompleterich2009-06-21T23:43:05Z2009-06-21T23:43:05ZAre you talking about a web service where you would be using something like SOAP? If so, I would avoid using a web service for this since it would add an extra layer of complexity and cause more latency. For the autocomplete I would send AJAX requests to the server and either query the database for suggestions or query from cached database results where possible.http://stackoverflow.com/questions/1023786/whats-the-best-approach-in-auditing-a-big-java-j2ee-web-applicationComment by rich on What's the best approach in auditing a big java/j2ee web applicationrich2009-06-21T16:48:25Z2009-06-21T16:48:25ZYou've really got your hands full. I wouldn't trust the existing unit tests without verifying them. You're definitely going to need some sort of regression tests to make sure the rewritten code still meets the functional requirements. The items on your list are a good start, especially the static analysis tools you mentioned.http://stackoverflow.com/questions/1024229/how-to-manipulate-list-in-javaComment by rich on how to manipulate list in javarich2009-06-21T16:35:19Z2009-06-21T16:35:19ZYou can let the database query remove the dups so you won't have to deal with them in your java code. Typically, anything you do in the database will likely be much more efficient.http://stackoverflow.com/questions/1022567/maven-compile-groovy/1022589#1022589Comment by rich on maven compile groovyrich2009-06-21T13:21:34Z2009-06-21T13:21:34ZThat's true but having bi-directional dependencies can lead to unnecessarily complex and less maintainable code. In the context of this question I agree that using GMaven is the right answer but I would still refactor the code to eliminate, or at least reduce the bi-directional relationships.http://stackoverflow.com/questions/1022552/old-code-in-comments/1022554#1022554Comment by rich on Old Code in commentsrich2009-06-20T21:14:09Z2009-06-20T21:14:09Z+1 Good checkin/commit comments will help others to understand why the code changes were made.http://stackoverflow.com/questions/980254/pick-recently-selected-colors-in-javaComment by rich on Pick recently selected colors in javarich2009-06-11T11:54:56Z2009-06-11T11:54:56ZHave you tried using the ColorSelectionModel? You can access this using myColorChooser.getSelectionModel(). Once you get the ColorSelectionModel you can do something like Color selectedColor=myColorSelectionModel.getSelectedColor() and myColorSelectionModel.setSelectedColor(selectedColor).http://stackoverflow.com/questions/950642/how-to-analyse-which-jar-file-is-used-in-a-java-programComment by rich on How to analyse which jar file is used in a JAVA program?rich2009-06-04T13:52:06Z2009-06-04T13:52:06ZDo you want to analyze internally from your app, or externally from outside your app?http://stackoverflow.com/questions/946178/should-developer-tools-languages-frameworks-etc-be-standardized-across-an-orgComment by rich on Should developer tools, languages, frameworks, etc. be standardized across an organization?rich2009-06-04T13:40:54Z2009-06-04T13:40:54ZI was tempted to edit my question since it gives the impression that I just blindly follow what's new and fashionable, but I chose to leave it as-is so the replies would make sense. But, just to clarify, I'm not 100% against standardization. What I am against is 100% standardization.http://stackoverflow.com/questions/643746/i-sold-my-source-code-to-a-client-can-i-now-re-build-similar-code-and-sell-to-soComment by rich on I sold my source code to a client, can I now re-build similar code and sell to someone else?rich2009-05-19T23:50:46Z2009-05-19T23:50:46ZIs this any different than when developers create 'ramp-up' frameworks while on the clock? I'm not saying it's right but it happens.http://stackoverflow.com/questions/885329/java-servlet-how-to-speed-this-up/885335#885335Comment by rich on java servlet : how to speed this up? rich2009-05-19T23:22:20Z2009-05-19T23:22:20ZGood comments. I agree that the biggest bang for the buck is with resolving the query issues. Depending on your database design you may need to start with the database. I may be pointing out the obvious, but in order to do the join you will need to make sure that DocumentItems.ManufacturerPartNumber is a foreign key referencing the primary key timitem.itemid. After that you can add 'and DocumentItems.ManufacturerPartNumber = timitem.itemid' to the where clause, and 'itemkey' to the select clause. String operations can be expensive so it would be worth it to use StringBuilder instead of '+'.http://stackoverflow.com/questions/436059/what-is-a-good-way-to-provide-a-different-user-experience-based-on-the-visitor-tyComment by rich on What is a good way to provide a different user experience based on the visitor type?rich2009-01-12T18:06:20Z2009-01-12T18:06:20ZTo be honest I don't have specific requirements yet. This is something our customer is hinting towards. Our core data is hierarchical so the way it is traversed (navigation) may differ between visitor types. As recommended below the appearance will also differ.http://stackoverflow.com/questions/340623/programming-to-an-interface-how-to-decide-where-its-needed/340636#340636Comment by rich on Programming to an interface. How to decide where its needed?rich2008-12-04T14:34:33Z2008-12-04T14:34:33ZI think it is a judgment call based on what you're implementing. One example of where I would say to always program to interfaces is when creating a DAO layer since interfaces will lend to using different data sources and creating mock data for unit testing.http://stackoverflow.com/questions/301839/unittest-how-do-you-organise-your-testing-files/301887#301887Comment by rich on UnitTest how do you organise your testing files?rich2008-11-19T13:45:05Z2008-11-19T13:45:05ZMaven is excellent for helping to facilitate consistency with project structure including how to structure your unit tests.