User Pat - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T01:43:09Zhttp://stackoverflow.com/feeds/user/20161http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1083357/do-you-always-redirect-after-post-if-yes-how-do-you-manage-it/1083645#10836450Answer by Pat for Do you always REDIRECT after POST? If yes, How do you manage it? Pat2009-07-05T07:58:29Z2009-07-05T07:58:29Z<p>Its a little non-obvious but:
* create a keyed-object in the user session.
* the value is a Request + java Future for the result
* return immediately with a client-side redirect.
* while the client-side redirect is being handled, have a worker thread work on producing the answer.</p>
<p>So by the time the client browser completes the redirect, getting the new page's images, etc... the results are waiting for the user.</p>
<p>The alternative is to make the user painfully aware of how long the database is taking.</p>
http://stackoverflow.com/questions/1051343/how-to-get-the-results-of-where-conditional-evaluations-in-the-result-set1How to get the results of WHERE conditional evaluations in the result set?Pat2009-06-26T21:23:47Z2009-06-26T22:52:27Z
<h2><strong><em>The PROBLEM</em></strong></h2>
<p>I have a query like this:</p>
<pre><code>select a.id from a join b on ( a.id = b.my_a ) join ....
where
( /* complex and expensive conditional */ )
AND
(( /* conditional #1 */ )
OR ( /* conditional #2 */ )
OR ( /* conditional #3 */))
</code></pre>
<p>I would like to have the query return something like:</p>
<pre><code>select a.id, conditional_1_eval_value, conditional_2_eval_value, conditional_3_eval_value from a join b on ( a.id = b.my_a ) join ....
where
( /* complex and expensive conditional */ )
AND
(( /* conditional #1 */ )
OR ( /* conditional #2 */ )
OR ( /* conditional #3 */))
</code></pre>
<p>where <code>conditional_1_eval_value</code>, <code>conditional_2_eval_value</code>, and <code>conditional_3_eval_value</code> are set to TRUE, FALSE, NULL. NULL indicating that the conditional was not evaluated.</p>
<p>So the results set might be:</p>
<pre><code>1, FALSE, NULL, TRUE ( condition_1, condition_3 were evaluate, condition_2 was not)
2, NULL, TRUE, TRUE ( condition_2, condition_3 were evaluate, condition_1 was not)
3, TRUE, FALSE, FALSE (all were evaluated)
</code></pre>
<p><code>condition_1</code>, <code>condition_2</code>, <code>condition_3</code> are complex themselves involving correlated subqueries and grouping.</p>
<p>EDIT:</p>
<h1>What am I trying to accomplish?</h1>
<p>We need to log which conditional caused the row to be returned. We don't need to know all the reasons why the row was returned. So in the second row of the results example, it is enough to know that <code>conditional_2</code> and <code>conditional_3</code> were both true. Not knowing the what <code>conditional_1</code> value is does not matter. </p>
<p>It is enough to know that at least one conditional was satisfied and what that one conditional was.</p>
<h1><em>Nonoptimal solutions</em></h1>
<p>Obviously I could do this with a <strong>UNION</strong> like this:</p>
<pre><code>select a.id, TRUE, NULL, NULL from a join b on ( a.id = b.my_a ) join ....
where
( /* complex and expensive conditional */ )
AND
( /* conditional #1 */ )
UNION
select a.id, NULL, TRUE, NULL from a join b on ( a.id = b.my_a ) join ....
where
( /* complex and expensive conditional */ )
AND
( /* conditional #2 */ )
UNION
select a.id, NULL, NULL, TRUE from a join b on ( a.id = b.my_a ) join ....
where
( /* complex and expensive conditional */ )
AND
( /* conditional #3 */)
</code></pre>
<p>But this would mean that:</p>
<ol>
<li>the common "complex and expensive conditional" is evaluated 3 times.</li>
<li>that all conditionals are evaluated even when another conditional has already satisfied the OR.</li>
<li>there would be a maintenance nightmare insuring that the 3 copies of the common complex query are identical ( o.k. solvable by constructing sql in code and copying the common string -- but that means I would violate another internal standard of all sql not being embedded in java but being in a visible-to-DBAs xml file)</li>
</ol>
<p>Using a <strong>CASE in the select</strong> that duplicates each conditional 1 through 3 avoids the common condition being evaluated 3 times. However, the complexity of conditional 1-3 is such that it may not be possible.</p>
<p>Using a <strong>select in the FROM</strong> clause, would be awkward and may not be possible because a FROM SELECT cannot be a correlated query. I am not certain that I can construct a useful noncorrelated query.</p>
<p><strong>Stored procedures</strong> would work. However, this would be out first such stored procedure and would increase our deployment complexity significantly.</p>
<p><strong>Doing the <code>conditional_1</code>, <code>conditional_2</code>, <code>conditional_3</code> evaluation in java code.</strong> This is what we are currently doing and it runs sloooooooow. Lots of data transferred when the database is designed to filter the results set -- should not be doing this in java!</p>
<h1>Solution suggestions?</h1>
<p>Anyone?</p>
<p>I should also add that I welcome answers that say this problem cannot be solved. Knowing that the problem cannot be solved would save me time trying to solve it with strictly SQL. </p>
<p>If I had to chose, I would lean toward learning what the mysql stored procedure would look like.</p>
<p>So if you want to volunteer what the mysql stored procedure would look like that would be great.</p>
http://stackoverflow.com/questions/269486/how-to-specify-firstdayofweek-for-java-util-calendar-using-a-jvm-argument/1051235#10512350Answer by Pat for How to specify firstDayOfWeek for java.util.Calendar using a JVM argumentPat2009-06-26T20:51:10Z2009-06-26T20:51:10Z<p>Consider using <a href="http://joda-time.sourceforge.net/" rel="nofollow">jodatime</a></p>
http://stackoverflow.com/questions/1029813/how-to-use-hibernate-interceptors-to-populate-extra-fields-in-a-join-table/1033913#10339130Answer by Pat for How to use hibernate interceptors to populate extra fields in a join table?Pat2009-06-23T17:11:12Z2009-06-23T17:11:12Z<p>You are better off implementing a SaveOrUpdateEventListener, rather than an interceptor.</p>
<p>Be sure to add the SaveOrUpdateEventListener this way:</p>
<pre><code>private void initSaveOrUpdateEventListenerHook(Configuration config) {
List<SaveOrUpdateEventListener> l = new ArrayList<SaveOrUpdateEventListener>();
SaveOrUpdateEventListener[] listeners =
config.getEventListeners().getSaveOrUpdateEventListeners();
l.add(new SaveOrUpdateEventListenerHook());
l.addAll(Arrays.asList(listeners));
SaveOrUpdateEventListener[] newListeners = l.toArray(new SaveOrUpdateEventListener[l.size()]);
config.getEventListeners().setSaveOrUpdateEventListeners(newListeners);
}
</code></pre>
http://stackoverflow.com/questions/314578/need-an-example-of-a-primary-key-onetoone-mapping-in-hibernate/1005718#10057181Answer by Pat for Need an example of a primary-key @OneToOne mapping in HibernatePat2009-06-17T08:12:00Z2009-06-17T08:12:00Z<p>You should stay away from hibernate's OneToOne mapping, it is very dangerous. see <a href="http://opensource.atlassian.com/projects/hibernate/browse/HHH-2128" rel="nofollow">http://opensource.atlassian.com/projects/hibernate/browse/HHH-2128</a></p>
<p>you are better off using ManyToOne mappings.</p>
http://stackoverflow.com/questions/1002547/onetoone-relationship-with-shared-primary-key-generates-n1-selects-any-workarou/1005710#10057100Answer by Pat for OneToOne relationship with shared primary key generates n+1 selects; any workaround?Pat2009-06-17T08:09:29Z2009-06-17T08:09:29Z<p><strong>Stay away from hibernate's OneToOne mapping</strong></p>
<p>It is very broken and dangerous. You are one minor bug away from a database corruption problem.</p>
<p><a href="http://opensource.atlassian.com/projects/hibernate/browse/HHH-2128" rel="nofollow">http://opensource.atlassian.com/projects/hibernate/browse/HHH-2128</a></p>
http://stackoverflow.com/questions/492754/how-to-run-eclipse-3-4-1-on-macos-10-5-6/1005669#10056690Answer by Pat for How to run Eclipse 3.4.1 on MacOS 10.5.6?Pat2009-06-17T07:55:03Z2009-06-17T07:55:03Z<p>I set </p>
<pre><code>export JAVA_VERSION=1.6
</code></pre>
http://stackoverflow.com/questions/898529/populate-envers-revision-tables-with-existing-data-from-hibernate-entities/998836#9988360Answer by Pat for Populate envers revision tables with existing data from Hibernate EntitiesPat2009-06-15T22:49:55Z2009-06-15T22:49:55Z<p>Wouldn't you just add an initial record via an upgrade SQL when rolling out the change?</p>
http://stackoverflow.com/questions/843283/asynchronous-channel-close-in-java-nio/985647#9856472Answer by Pat for Asynchronous channel close in Java NIOPat2009-06-12T08:44:44Z2009-06-13T08:03:28Z<p>You have a major problem in your example. </p>
<p>With Java NIO, the thread doing the <em>accept()</em> <strong>must</strong> only be doing the <em>accept()</em>. Toy examples aside you are probably using Java NIO because of anticipated high number of connections. If you even <em>think</em> about doing the read in the same thread as the selects, the pending unaccepted selects will time out waiting for the connection to be established. By the time this one overwrought thread gets around to accepting the connection, the OS's on either side will have given up and the accept() will fail.</p>
<p>Only do the absolute minimum in the selection thread. Any more and you will just being rewriting the code until you do only the minimum.</p>
<p><em>[In response to comment]</em></p>
<p>Only in toy examples should the reading be handled on the main thread.</p>
<p>Try to handle:</p>
<ul>
<li>300+ simultaneous connection attempts.</li>
<li>Each connection once established sends 24K bytes to a single server - i.e. a small web page, a tiny .jpg.</li>
<li>Slow down each connection slightly ( the connection is being established over a dialup, or the network is having a high-error/retry rate) - so the TCP/IP ACK takes longer than ideal (out of your control OS level thing)</li>
<li>Have some of your test connections, send a single bytes every 1 milliseconds. (this simulates a client that is having its own high load condition, so is generating the data at a very slow rate.) The thread has to spend almost the same amount of effort processing a single bytes as it does 24K bytes.</li>
<li>Have some connections be cut with no warning ( connection lost issues ).</li>
</ul>
<p>As a practical matter, the connection needs to be established within 500ms -1500ms before the attempting machine drops the connection.</p>
<p>As a result of all these issues, a single thread will not be able to get all the connections set up fast enough before the machine on the other end gives up the connection attempt. The reads must be in a different thread. period.</p>
<p><strong>[Key Point]</strong>
I forgot to really be clear about this. But the threads doing the reading will have their own Selector. The Selector used to establish the connection should not be used to listen for new data.</p>
http://stackoverflow.com/questions/982333/how-useful-is-php-codesniffer-code-standards-enforcement-in-general/985662#9856620Answer by Pat for How useful is PHP CodeSniffer? Code Standards Enforcement in General?Pat2009-06-12T08:50:56Z2009-06-12T08:50:56Z<p>its easier to hid bad code in messy / hard to read code.</p>
<p>Can you find the half-eaten, 4-month old pizza in a clean room or a messy one? The analogy holds for code.</p>
<p>If everything about the code has a pungent smell to it, then how do you find the truly putrid code? The developers' nose has been "desensitized".</p>
http://stackoverflow.com/questions/949569/how-to-recover-or-reset-ssis-package-password/985614#9856140Answer by Pat for How to Recover or Reset SSIS Package Password?Pat2009-06-12T08:35:32Z2009-06-12T08:35:32Z<p>I agree with Michael's comment about a password guessing or dictionary attack as being a good approach. </p>
<p>I was just about to also suggest using a cloud computing environment like EC2 to divide and conquer ... but then I realized you are stuck on windows!</p>
http://stackoverflow.com/questions/984428/how-do-i-grow-a-contained-floated-element-to-the-full-height-of-its-container/985597#9855970Answer by Pat for How do I grow a contained floated element to the full height of its container?Pat2009-06-12T08:29:34Z2009-06-12T08:29:34Z<p>May be this would help with ideas? I just found this css framework myself: </p>
<p><a href="http://www.blueprintcss.org/" rel="nofollow">http://www.blueprintcss.org/</a></p>
http://stackoverflow.com/questions/985295/can-you-define-literal-tables-in-sql/985355#9853550Answer by Pat for Can you define "literal" tables in SQL?Pat2009-06-12T07:02:28Z2009-06-12T07:14:26Z<p>CREATE TEMPORARY TABLE ( ID int, Name char(100) ) SELECT ....</p>
<p>Read more at : <a href="http://dev.mysql.com/doc/refman/5.0/en/create-table.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.0/en/create-table.html</a> </p>
<p>( near the bottom ) </p>
<p>This has the advantage that if there is any problem populating the table ( data type mismatch ) the table is automatically dropped.</p>
<p>An early answer used a FROM SELECT clause. If possible use that because it saves the headache of cleaning up the table. </p>
<p>Disadvantage ( which may not matter ) with the FROM SELECT is how large is the data set created. A temporary table allows for indexing which may be critical. For the subsequent query. Seems counter-intuitive but even with a medium size data set ( ~1000 rows), it can be faster to have a index created for the query to operate on.</p>
http://stackoverflow.com/questions/944679/supplying-credentials-safely-to-a-restful-api/954152#9541520Answer by Pat for Supplying credentials safely to a RESTFUL APIPat2009-06-05T03:30:03Z2009-06-05T03:30:03Z<p>look at existing solutions. In this case, <a href="http://oauth.net" rel="nofollow">oauth</a></p>
http://stackoverflow.com/questions/896320/what-are-the-grails-advantages-over-other-java-web-frameworks/896972#8969720Answer by Pat for What are the Grails advantages over other Java Web Frameworks?Pat2009-05-22T08:59:14Z2009-05-22T08:59:14Z<p>Tapestry rocks. Object-oriented framework which matches OO language. Its nice to be able to stay completely in the same OO mindset. </p>
<p>I always found the "request" frameworks to be awkward at best. And dangerously bad at worse (developers tend to get wrapped up in the mechanics of the request).</p>
<p>We are using Tapestry 4 but will be upgrading soon.</p>
http://stackoverflow.com/questions/796504/does-it-make-sense-to-use-the-table-tag-on-a-modern-website/796725#7967250Answer by Pat for Does it make sense to use the <table> tag on a "modern" website?Pat2009-04-28T07:58:04Z2009-04-28T07:58:04Z<p>First get it working. Then get it perfect.</p>
<p>Get the layout done in some way before making it perfect or better.</p>
<p>How many people per day will go to the page you are working on? A million? or 20 ?</p>
<p>How much time are you going to spend on CSS issues instead of other issues? Does your boss want you to spend this much time on the issue? Does he/she know what you are doing?</p>
http://stackoverflow.com/questions/342619/using-the-rome-java-api-to-access-metadata-fields/763083#7630831Answer by Pat for Using the Rome Java API to access metadata fieldsPat2009-04-18T07:18:22Z2009-04-18T07:18:22Z<p>Here is the raw classes for our code without much explanation (but it is late here!). This parses elements:</p>
<pre><code>import com.sun.syndication.io.ModuleGenerator;
import com.sun.syndication.io.impl.DateParser;
import com.sun.syndication.feed.module.Module;
import java.util.Collections;
import java.util.Set;
import java.util.HashSet;
import org.jdom.Element;
import org.jdom.Namespace;
/**
* Generates amplafi content in atom.
*/
public class AmplafiModuleGenerator implements ModuleGenerator {
private static final Namespace NAMESPACE = Namespace.getNamespace("amplafi", AmplafiModule.URI);
private static final Set<Namespace> NAMESPACES;
static {
Set<Namespace> namespaces = new HashSet<Namespace>();
namespaces.add(NAMESPACE);
NAMESPACES = Collections.unmodifiableSet(namespaces);
}
public String getNamespaceUri() {
return AmplafiModule.URI;
}
public Set<Namespace> getNamespaces() {
return NAMESPACES;
}
public void generate(Module module, Element element) {
AmplafiModule myModule = (AmplafiModule) module;
if (myModule.getStartDate() != null) {
Element myElement = new Element("startDate", NAMESPACE);
myElement.setText(DateParser.formatW3CDateTime(myModule.getStartDate()));
element.addContent(myElement);
}
if (myModule.getEndDate() != null) {
Element myElement = new Element("endDate", NAMESPACE);
myElement.setText(DateParser.formatW3CDateTime(myModule.getEndDate()));
element.addContent(myElement);
}
}
}
import com.sun.syndication.feed.module.Module;
import java.util.Date;
/**
* Module for amplafi atom extension.
*/
public interface AmplafiModule extends Module {
public static final String URI = "http://www.amplafi.com/namespace";
public Date getStartDate();
public void setStartDate(Date date);
public Date getEndDate();
public void setEndDate(Date date);
}
public class AmplafiModuleImpl extends ModuleImpl implements AmplafiModule {
private Date startDate;
private Date endDate;
public AmplafiModuleImpl() {
super(AmplafiModule.class, AmplafiModule.URI);
}
@Override
public Class getInterface() {
return AmplafiModule.class;
}
@Override
public void copyFrom(Object obj) {
AmplafiModule module = (AmplafiModule) obj;
setStartDate(module.getStartDate());
setEndDate(module.getEndDate());
}
@Override
public Date getStartDate() {
return startDate;
}
@Override
public void setStartDate(Date date) {
startDate = date;
}
@Override
public Date getEndDate() {
return endDate;
}
@Override
public void setEndDate(Date date) {
endDate = date;
}
@Override
public String toString() {
return "AmplafiModuleImpl{" +
"startDate=" + startDate +
", endDate=" + endDate +
'}';
}
}
package com.amplafi.core.iomanagement.contentanalyzers.modules;
import java.util.Date;
import org.jdom.Element;
import org.jdom.Namespace;
import com.sun.syndication.feed.module.Module;
import com.sun.syndication.io.ModuleParser;
import com.sun.syndication.io.impl.DateParser;
/**
* Parses amplafi content from atom.
*/
public class AmplafiModuleParser implements ModuleParser {
public String getNamespaceUri() {
return AmplafiModule.URI;
}
public Module parse(Element element) {
Namespace myNamespace = Namespace.getNamespace(AmplafiModule.URI);
AmplafiModule module = null;
Date start = null;
Date end = null;
final Element startChild = element.getChild("startDate", myNamespace);
if (startChild!=null) {
start = DateParser.parseDate(startChild.getText());
}
final Element endChild = element.getChild("endDate", myNamespace);
if (endChild!=null) {
end = DateParser.parseDate(endChild.getText());
}
if (start!=null || end!=null) {
module = new AmplafiModuleImpl();
module.setStartDate(start);
module.setEndDate(end);
}
return module;
}
}
</code></pre>
<p>rome.properties:</p>
<pre><code>atom_1.0.item.ModuleParser.classes=\
com.amplafi.core.iomanagement.contentanalyzers.modules.AmplafiModuleParser
atom_1.0.item.ModuleGenerator.classes=\
com.amplafi.core.iomanagement.contentanalyzers.modules.AmplafiModuleGenerator
</code></pre>
http://stackoverflow.com/questions/487440/technology-changes-that-youd-never-want-to-reverse/759542#7595420Answer by Pat for Technology changes that you'd never want to reversePat2009-04-17T08:32:43Z2009-04-17T08:32:43Z<p>The next one. :-)</p>
http://stackoverflow.com/questions/734110/persistent-data-structures-in-java/735004#7350040Answer by Pat for Persistent data structures in JavaPat2009-04-09T16:41:54Z2009-04-09T16:41:54Z<p>Do you want immutability :</p>
<ol>
<li>so external code cannot change the data?</li>
<li>so once set a value cannot be changed?</li>
</ol>
<p>In both cases there are easier ways to accomplish the desired result.</p>
<p>Stopping external code from changing the data is easy with interfaces:</p>
<pre><code>public interface Person {
String getName();
Address getAddress();
}
public interface PersonImplementor extends Person {
void setName(String name);
void setAddress(Address address);
}
public interface Address {
String getCity();
}
public interface AddressImplementor {
void setCity(String city);
}
</code></pre>
<p>Then to stop changes to a value once set is also "easy" using java.util.concurrent.atomic.AtomicReference (although hibernate or some other persistence layer usage may need to be modified):</p>
<pre><code>class PersonImpl implements PersonImplementor {
private AtomicReference<String> name;
private AtomicReference<Address> address;
public void setName(String name) {
if ( !this.name.compareAndSet(name, name)
&& !this.name.compareAndSet(null, name)) {
throw new IllegalStateException("name already set to "+this.name.get()+" cannot set to "+name);
}
}
// .. similar code follows....
}
</code></pre>
<p>But why do you need anything more than just interfaces to accomplish the task?</p>
http://stackoverflow.com/questions/689989/any-suggestions-on-how-to-session-proof-a-website/691486#6914860Answer by Pat for Any suggestions on how to session proof a website?Pat2009-03-27T21:19:15Z2009-03-27T21:19:15Z<p>This is what we do at <a href="http://amplafi.com" rel="nofollow">amplafi.com</a></p>
<p>(h/t See <a href="http://randomcoder.com/articles/jsessionid-considered-harmful" rel="nofollow">http://randomcoder.com/articles/jsessionid-considered-harmful</a> )
in the web.xml:</p>
<pre><code><filter>
<filter-name>DisableSessionIdsInUrlFilter</filter-name>
<filter-class>
com.amplafi.web.servlet.DisableSessionIdsInUrlFilter
</filter-class>
</filter>
<filter-mapping>
<filter-name>DisableSessionIdsInUrlFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
</code></pre>
<p>And this java code:</p>
<pre><code>import java.io.IOException;
import javax.servlet.Filter;
import javax.servlet.FilterChain;
import javax.servlet.FilterConfig;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpServletResponseWrapper;
import javax.servlet.http.HttpSession;
/**
* remove any session id from the Url.
*
*
* Ideally we would like to only remove this container-provided functionality
* only for public portions of the web site (that can be crawled by google)
* or for links that are to be bookmarked.
*
* @author Patrick Moore
*/
public class DisableSessionIdsInUrlFilter implements Filter {
@Override
public void destroy() {
}
@Override
public void doFilter(ServletRequest request, ServletResponse response,
FilterChain chain) throws IOException, ServletException {
if (!(request instanceof HttpServletRequest)) {
chain.doFilter(request, response);
return;
}
HttpServletRequest httpRequest = (HttpServletRequest) request;
HttpServletResponse httpResponse = (HttpServletResponse) response;
/*
* Next, let's invalidate any sessions that are backed by a URL-encoded
* session id. This prevents an attacker from generating a valid link.
* Just because we won't be generating session-encoded links doesn't
* mean someone else won't try
*/
if (httpRequest.isRequestedSessionIdFromURL()) {
HttpSession session = httpRequest.getSession();
if (session != null) {
session.invalidate();
}
}
HttpServletResponseWrapper wrappedResponse = new ResponseWrapper(httpResponse);
chain.doFilter(request, wrappedResponse);
}
@Override
@SuppressWarnings("unused")
public void init(FilterConfig arg0) throws ServletException {
}
/**
* wraps response and prevense jsessionid from being encoded on the output.
*/
private static class ResponseWrapper extends HttpServletResponseWrapper {
ResponseWrapper(HttpServletResponse httpResponse) {
super(httpResponse);
}
@Override
public String encodeRedirectUrl(String uri) {
return uri;
}
@Override
public String encodeRedirectURL(String uri) {
return uri;
}
@Override
public String encodeUrl(String uri) {
return uri;
}
@Override
public String encodeURL(String uri) {
return uri;
}
}
}
</code></pre>
http://stackoverflow.com/questions/680514/object-pooling/680576#6805764Answer by Pat for Object PoolingPat2009-03-25T07:37:55Z2009-03-25T07:37:55Z<p>Don't.</p>
<p>This is 2001 thinking. The only object "pool" that is still worth anything now a days is a singleton. I use singletons only to reduce the object creation for purposes of profiling (so I can see more clearly what is impacting the code). </p>
<p>Anything else you are just fragmenting memory for no good purpose. </p>
<p>Go ahead and run a profile on creating a 1,000,000 objects. It is insignificant.</p>
<p><a href="http://www.ibm.com/developerworks/java/library/j-jtp01274.html" rel="nofollow">Old article here.</a></p>
http://stackoverflow.com/questions/678709/how-do-you-manage-yourself-after-discovering-you-are-responsible-for-a-critical-b/678815#6788153Answer by Pat for How do you manage yourself after discovering you are responsible for a critical bug?Pat2009-03-24T19:13:27Z2009-03-24T19:13:27Z<p>Remember what Nixon learned:</p>
<blockquote>
<p>It's not the crime, its the cover-up that gets you.</p>
</blockquote>
<p>Be proactive about issues, yes. But also do not let the word "blame" get used by YOURSELF, the customer, or your manager. Once people start the "blame game" witch hunt things get much, much worse.</p>
<p>Don't let the blame game be played. You can do this by:</p>
<ol>
<li>Accept responsibility (responsibility means you will make sure that the issue is resolved.)</li>
<li>Keep in front of the situation. You want to always be the first to know and tell your manager. If someone else tattles on you to the manager or customer, you want the information to be "old news".</li>
<li>Don't overpromise! Promise to keep the customer informed but don't commit to a fix date immediately. </li>
<li>If possible, be prepared to offer at least one (tested!) solution.</li>
<li>Give yourself time to verify a fix before telling customer about the fix.</li>
<li>Breathe deeply and slow down so that the fix is a good one, not another disaster.</li>
<li>Figure out how widespread is the damage. Only tell people proactively that really need to know ( avoid the public sackcloth and ashes )</li>
<li>Apologize once and then squelch repeated mea culpas. You want people to focus on how well you recovered - not that a mistake was made.</li>
</ol>
<blockquote>
<p>"Mistakes happened we have learned
from the mistake. We need to
focus on procedures to make sure these
sort of mistakes get caught earlier.
This is what I propose..."</p>
</blockquote>
http://stackoverflow.com/questions/438146/hibernate-question-hbm2ddl-auto-possible-values-and-what-they-do/672490#6724904Answer by Pat for Hibernate question hbm2ddl.auto possible values and what they doPat2009-03-23T07:40:34Z2009-03-23T07:40:34Z<p>I would use <a href="http://www.liquibase.org" rel="nofollow" title="liquibase">liquibase</a> for updating your db. hibernate's schema update feature is really only o.k. for a developer while they are developing new features. In a production situation, the db upgrade needs to be handled more carefully.</p>
http://stackoverflow.com/questions/663520/is-it-a-good-idea-to-let-your-users-change-their-usernames/663976#6639760Answer by Pat for Is it a good idea to let your users change their usernames?Pat2009-03-19T20:42:39Z2009-03-19T20:42:39Z<p><strong>Business questions first</strong></p>
<p>Why are you offering this feature instead of spending the time on another feature? Would another feature offer better benefit (such as a status line?)</p>
<p>What will this accomplish?</p>
<p>Are users asking for this?</p>
<p>Will this feature result increased stickiness or better experience?</p>
<p>Is this a competitive advantage?</p>
<p>Does your site become more confusing?</p>
<p><hr /></p>
<p><strong>Technical questions</strong></p>
<p>What is the potential for misuse? Do you have a denormalized database where the username has been copied many places or is there only one place where the username is stored?</p>
<p>Do you have a way to stream a notification to other users "Your friend 'foo' is now 'bar'?"</p>
http://stackoverflow.com/questions/659915/synchronizing-on-an-integer-value/661004#6610040Answer by Pat for Synchronizing on an Integer valuePat2009-03-19T03:48:18Z2009-03-19T03:48:18Z<p>Steve, </p>
<p>your proposed code has a bunch of problems with synchronization. (Antonio's does as well).</p>
<p>To summarize:</p>
<ol>
<li>You need to cache an expensive
object.</li>
<li>You need to make sure that while one thread is doing the retrieval, another thread does not also attempt to retrieve the same object.</li>
<li>That for n-threads all attempting to get the object only 1 object is ever retrieved and returned.</li>
<li>That for threads requesting different objects that they do not contend with each other.</li>
</ol>
<p>pseudo code to make this happen (using a ConcurrentHashMap as the cache):</p>
<pre><code>ConcurrentMap<Integer, java.util.concurrent.Future<Page>> cache = new ConcurrentHashMap<Integer, java.util.concurrent.Future<Page>>;
public Page getPage(Integer id) {
Future<Page> myFuture = new Future<Page>();
cache.putIfAbsent(id, myFuture);
Future<Page> actualFuture = cache.get(id);
if ( actualFuture == myFuture ) {
// I am the first w00t!
Page page = getFromDataBase(id);
myFuture.set(page);
}
return actualFuture.get();
}
</code></pre>
<p>Note: </p>
<ol>
<li>java.util.concurrent.Future is an interface</li>
<li>java.util.concurrent.Future does not actually have a set() but look at the existing classes that implement Future to understand how to implement your own Future (Or use FutureTask)</li>
<li>Pushing the actual retrieval to a worker thread will almost certainly be a good idea.</li>
</ol>
http://stackoverflow.com/questions/657266/jms-alternative-something-for-decoupling-sending-emails-from-http-reqs/657342#6573420Answer by Pat for JMS alternative? something for decoupling sending emails from http reqsPat2009-03-18T08:20:34Z2009-03-18T08:20:34Z<p>We have the exact same problem. This may sound a little simplistic but it does work:</p>
<ol>
<li>Write the request to disk to an "outgoing" mail folder.</li>
<li>Email process reads in the request.</li>
<li>When the message has been sent, the outgoing mail message is deleted.</li>
<li>Plan is to use Amazon S3 as needed to help distribute the message transmission across servers if needed.</li>
</ol>
http://stackoverflow.com/questions/638300/is-it-worth-moving-from-java-to-c-for-someone-with-3-years-of-java-experience/647463#6474630Answer by Pat for Is it worth moving from Java to C#, for someone with 3 years of Java experience?Pat2009-03-15T07:55:40Z2009-03-15T07:55:40Z<p>The more languages you know the greater your depth of knowledge about <em>all</em> languages. You will have a greater appreciation for each language's strength and weaknesses. </p>
<p>However, you will learn even more if you learn languages that are completely different from each other.</p>
<p>I never knew a developer that became a worse developer because they learned something new!</p>
http://stackoverflow.com/questions/639592/why-are-interfaces-preferred-to-abstract-classes/647446#6474461Answer by Pat for Why are interfaces preferred to abstract classes?Pat2009-03-15T07:34:00Z2009-03-15T07:34:00Z<p>Respectfully disagree with most of the above posters (sorry! mod me down if you want :-) ) </p>
<p><hr /></p>
<p>First, the "only one super class" answer is lame. Anyone who gave me that answer in an interview would be quickly countered with "C++ existed before Java and C++ had multiple super classes. Why do you think James Gosling only allowed one superclass for Java?"</p>
<p>Understand the philosophy behind your answer otherwise you are toast (at least if I interview you.)</p>
<p><hr /></p>
<p>Second, interfaces have multiple advantages over abstract classes, especially when designing interfaces. The biggest one is not having a particular class structure imposed on the caller of a method. There is nothing worse than trying to use a method call that demands a particular class structure. It is painful and awkward. Using an interface <em>anything</em> can be passed to the method with a minimum of expectations.</p>
<p>Example:</p>
<pre><code>public void foo(Hashtable bar);
</code></pre>
<p>vs.</p>
<pre><code>public void foo(Map bar);
</code></pre>
<p>For the former, the caller will always be taking their existing data structure and slamming it into a new Hashtable.</p>
<p><hr /></p>
<p>Third, interfaces allow public methods in the concrete class implementers to be "private". If the method is not declared in the interface then the method cannot be used (or misused) by classes that have no business using the method. Which brings me to point 4....</p>
<p><hr /></p>
<p>Fourth, Interfaces represent a minimal contract between the implementing class and the caller. This minimal contract specifies exactly <em>how</em> the concrete implementer expects to be used and no more. The calling class is not allowed to use any other method not specified by the "contract" of the interface. The interface name in use also flavors the developer's expectation of how they should be using the object. If a developer is passed a</p>
<pre><code>public interface FragmentVisitor {
public void visit(Node node);
}
</code></pre>
<p>The developer knows that the only method they can call is the visit method. They don't get distracted by the bright shiny methods in the concrete class that they shouldn't mess with.</p>
<p><hr /></p>
<p>Lastly, abstract classes have many methods that are really only present for the subclasses to be using. So abstract classes tend to look a little like a mess to the outside developer, there is no guidance on which methods are intended to be used by outside code.</p>
<p>Yes of course some such methods can be made protected. However, sadly protected methods are also visible to other classes in the same package. And if an abstract class' method implements an interface the method must be public. </p>
<p>However using interfaces all this innards that are hanging out when looking at the abstract super class or the concrete class are safely tucked away.</p>
<p><hr /></p>
<p>Yes I know that of course the developer may use some "special" knowledge to cast an object to another broader interface or the concrete class itself. But such a cast violates the expected contract, and the developer should be slapped with a salmon.</p>
http://stackoverflow.com/questions/614257/java-library-class-to-handle-scheduled-execution-of-callbacks/621497#6214970Answer by Pat for Java library class to handle scheduled execution of "callbacks"?Pat2009-03-07T07:54:39Z2009-03-07T07:54:39Z<p>Can't believe java.util.Timer was voted as the answer. Quartz is really a much better choice.</p>
<p>A big advantage of quartz over java.util.Timer is that with quartz the jobs can be stored in the db. As a result one jvm can schedule and another can execute. Also (obviously) the request survives across jvm restarts.</p>
http://stackoverflow.com/questions/599443/android-how-to-hang-up-outgoing-call/600411#6004111Answer by Pat for Android. How to hang up outgoing call?Pat2009-03-01T20:08:48Z2009-03-01T20:08:48Z<p>Considering the potential for wonderful mischief I would be surprised if this is allowed.</p>
<p>This thread says flatly that <a href="http://groups.google.com/group/android-beginners/browse%5Fthread/thread/8c1a674c83908efa" rel="nofollow">the API cannot end a call</a>. Others <a href="http://groups.google.com/group/android-developers/browse%5Fthread/thread/8b5771764f14c085" rel="nofollow">have tried</a>.</p>
http://stackoverflow.com/questions/395702/migrating-from-svn-to-perforce-tips-experience/395762#395762Comment by Pat on Migrating from SVN to Perforce -- Tips? Experience?Pat2009-11-06T18:33:03Z2009-11-06T18:33:03ZEvery single complaint you have about P4 is solved with changing a client option.
Edit your connection options:
1) P4 revert unchanged files : "SubmitOptions: revertunchanged"
2) Writeable unchecked out files: Check the "allwrite" check box.
3) ... and I could go on ....
I use P4 to do the branching and merging ( and to back up svn )
svn gets confused if its damn .svn gets touched at all I have had so many issues that svn cleanup would not solve.
http://stackoverflow.com/questions/1576789/in-regex-what-does-w-meanComment by Pat on In regex, what does \w* mean?Pat2009-10-16T08:46:32Z2009-10-16T08:46:32Zit means you didn't RTFM. I love these questions where 3 seconds with the documentation would have been enough to have gotten an answerhttp://stackoverflow.com/questions/1467676/what-if-any-documentation-should-be-written-before-quitting-a-jobComment by Pat on What, if any, documentation should be written before quitting a job?Pat2009-09-23T19:06:14Z2009-09-23T19:06:14Z@Rich -- :-D Recognized it instantly! ("On the right is the famous margin which was too small to contain Fermat's alleged proof of his "last theorem" ) <a href="http://en.wikipedia.org/wiki/Fermat%27s_Last_Theorem" rel="nofollow">en.wikipedia.org/wiki/Fermat%27s_Last_Theorem/…</a>http://stackoverflow.com/questions/1464903/how-to-validate-data-restriction-using-regex-in-javaComment by Pat on How to validate data restriction using regex in javaPat2009-09-23T10:58:23Z2009-09-23T10:58:23ZThis kind of question can easily be answered by creating a small test program.http://stackoverflow.com/questions/1464780/what-is-the-best-and-easy-way-to-build-user-interfaces-with-cComment by Pat on What is the best and easy way to build user interfaces with c++ ?Pat2009-09-23T10:55:13Z2009-09-23T10:55:13Z"best" and "easy" -- subjective and for what environment?http://stackoverflow.com/questions/1225888/session-invalid-onclick-back-button-of-browserComment by Pat on Session invalid onclick back button of browserPat2009-08-04T06:22:06Z2009-08-04T06:22:06Zare you talking about logging out? What happens if the person then hits the forward button?http://stackoverflow.com/questions/1051343/how-to-get-the-results-of-where-conditional-evaluations-in-the-result-setComment by Pat on How to get the results of WHERE conditional evaluations in the result set?Pat2009-06-29T00:02:39Z2009-06-29T00:02:39ZBased on the (semi-expected, non-superman-to-the-rescue) answers here - I am going to try reducing the query further and seeing what shakes out. Will add more when I know more ... thanks.http://stackoverflow.com/questions/314578/need-an-example-of-a-primary-key-onetoone-mapping-in-hibernate/1005718#1005718Comment by Pat on Need an example of a primary-key @OneToOne mapping in HibernatePat2009-06-28T18:47:14Z2009-06-28T18:47:14ZI hope you have added in LARGE screaming letters multiple comments that no one should ever think about making the relationship optional. One accidental release to production for 30 seconds and you have data corruption.
For me, the risk was too large - even if it would not happen for 3 years. I liken it to having high-explosives in your house. You are safe and careful 99.999% of the time. But one slip-up and boom.
Why have the high-explosives at all?http://stackoverflow.com/questions/1051343/how-to-get-the-results-of-where-conditional-evaluations-in-the-result-set/1051525#1051525Comment by Pat on How to get the results of WHERE conditional evaluations in the result set?Pat2009-06-27T07:51:01Z2009-06-27T07:51:01Zman, you are not supposed to say that :-)http://stackoverflow.com/questions/1051343/how-to-get-the-results-of-where-conditional-evaluations-in-the-result-set/1051394#1051394Comment by Pat on How to get the results of WHERE conditional evaluations in the result set?Pat2009-06-27T07:50:07Z2009-06-27T07:50:07ZWe are a startup. The solution has to be achievable in a few hours. Not a few days. Right now it looks like a stored function is leading the way. Naturally I will try to reduce/consolidate the query but I have to operate on the assumption that I will not be able to in the allocated time.
Re: Java based evaluation; that is what we are trying to replace.http://stackoverflow.com/questions/1051343/how-to-get-the-results-of-where-conditional-evaluations-in-the-result-set/1051520#1051520Comment by Pat on How to get the results of WHERE conditional evaluations in the result set?Pat2009-06-27T07:46:09Z2009-06-27T07:46:09ZWell TRUE FALSE NULL are just example values. "foo", "bar" and "baz" would work just as well. Its the signal that is important- not the form of the signal.http://stackoverflow.com/questions/1051343/how-to-get-the-results-of-where-conditional-evaluations-in-the-result-set/1051520#1051520Comment by Pat on How to get the results of WHERE conditional evaluations in the result set?Pat2009-06-26T22:42:02Z2009-06-26T22:42:02ZSo these functions would act the same as CASE would conceptually but with better performance? It would avoid the problem of duplicating the conditionals by encapsulating the conditionals in functions.
[Stored procedures were listed under non-optimal solutions in the question]http://stackoverflow.com/questions/1051343/how-to-get-the-results-of-where-conditional-evaluations-in-the-result-set/1051409#1051409Comment by Pat on How to get the results of WHERE conditional evaluations in the result set?Pat2009-06-26T22:28:36Z2009-06-26T22:28:36ZAlso as referenced in the question FROM SELECTs must be non-correlated queries. If I can come up with a FROM SELECT query, then that would be my preferred solution. http://stackoverflow.com/questions/1051343/how-to-get-the-results-of-where-conditional-evaluations-in-the-result-set/1051409#1051409Comment by Pat on How to get the results of WHERE conditional evaluations in the result set?Pat2009-06-26T22:03:21Z2009-06-26T22:03:21Zyou have FROM (SELECT /* conditional #1 <i>/ AS c1, ) ... so what do I replace /</i> conditional #1 */ with? http://stackoverflow.com/questions/1051343/how-to-get-the-results-of-where-conditional-evaluations-in-the-result-set/1051394#1051394Comment by Pat on How to get the results of WHERE conditional evaluations in the result set?Pat2009-06-26T21:50:06Z2009-06-26T21:50:06ZNo. The conditionals are not variable. But processing of each row changes depending on which of the three conditionals is satisfied.
Will edit question.