User James McMahon - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T21:24:34Zhttp://stackoverflow.com/feeds/user/20774http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1770010/how-do-i-measure-time-elapsed-in-java/1770278#17702781Answer by James McMahon for How do I measure time elapsed in Java?James McMahon2009-11-20T12:57:30Z2009-11-20T13:04:08Z<p>If you prefer using Java's <a href="http://java.sun.com/javase/6/docs/api/java/util/Calendar.html" rel="nofollow">Calendar API</a> you can try this,</p>
<pre><code>Date startingTime = Calendar.getInstance().getTime();
//later on
Date now = Calendar.getInstance().getTime();
long timeElapsed = now.getTime() - startingTime.getTime();
</code></pre>
http://stackoverflow.com/questions/852743/any-good-spring-threading-with-a-taskexecutor-examples3Any good Spring threading with a TaskExecutor examples?James McMahon2009-05-12T13:20:05Z2009-11-18T20:45:34Z
<p>I'm trying to get a handle on how to implement threading in a Java application that uses Spring for transaction management. I've found the TaskExecutor section in the <a href="http://static.springframework.org/spring/docs/2.5.x/reference/scheduling.html#scheduling-task-executor" rel="nofollow">Spring documentation</a>, and ThreadPoolTaskExecutor looks like it would fit my needs;</p>
<blockquote>
<p>ThreadPoolTaskExecutor</p>
<p>This implementation can only be used in a Java 5 environment but is also the most commonly used one in that environment. It exposes bean properties for configuring a java.util.concurrent.ThreadPoolExecutor and wraps it in a TaskExecutor. If you need something advanced such as a ScheduledThreadPoolExecutor, it is recommended that you use a ConcurrentTaskExecutor instead. </p>
</blockquote>
<p>However I have no idea how to go about using it. I've been searching for good examples for awhile now with no luck. If anyone can help me out I would appreciate it.</p>
http://stackoverflow.com/questions/449409/does-assigning-objects-to-null-in-java-impact-garbage-collection10Does assigning objects to null in Java impact garbage collection?James McMahon2009-01-16T03:30:02Z2009-11-18T18:33:09Z
<p>Does assigning an unused object to null in Java improve the garbage collection process in any measurable way?</p>
<p>My experience with Java (and C#) has taught me that is often counter intuitive to try and outsmart the virtual machine or JIT, but I've seen co-workers use this method and I am curious if this is a good practice to pick up or one of those voodoo programming superstitions?</p>
http://stackoverflow.com/questions/1757000/creating-daily-logs-with-log4j0Creating daily logs with Log4j?James McMahon2009-11-18T15:57:22Z2009-11-18T17:01:34Z
<p>What configuration values are needed to setup Log4j to use the following pattern?<br>
<strong>MyApp-Mon.log<br>
MyApp-Tue.log<br>
MyApp-Wed.log<br>
Etc<br></strong></p>
<p>With each file containing the days log.</p>
<p>This sounds easy enough to do with Log4j's DailyRollingFileAppender but I am having trouble.<br>
Here is my current config;</p>
<pre><code><appender name="daily-file" class="org.apache.log4j.DailyRollingFileAppender">
<param name="Threshold" value="info"/>
<param name="DatePattern" value="'-'EE'.log'"/>
<param name="file" value="MyApp"/>
<param name="Append" value="true" />
<layout class="org.apache.log4j.PatternLayout">
<param name="ConversionPattern" value="%d{EEE MMM dd hh:mm:ss zzz yyyy} %-5p %l - %m%n"/>
</layout>
</appender>
</code></pre>
<p>I based this config on <a href="http://mhashem.wordpress.com/2009/02/02/log4j-roll-log-file-daily/" rel="nofollow">this</a> blog post, but it is not behaving in the way he describes. The log is being created as MyApp with no extension.</p>
<p>Can anyone help me out here?</p>
http://stackoverflow.com/questions/198462/get-versus-post-in-terms-of-security14GET versus POST in terms of security?James McMahon2008-10-13T18:08:01Z2009-11-16T19:50:51Z
<p>This may be a dumb question, but between a http POST and GET, what are the differences from a security perspective? Is one inherently more secure then another? I realize that POST doesn't expose information on the URL but is there any real value in that or is it just security through obscurity? What is the best practice here?</p>
<p>Edit:
Over https, POST data is encoded, but could urls be sniffed by a 3rd party? Additionally, I am dealing with JSP, but when using JSP or a similar framework, would it be fair to say the best practice is to avoid if at all possible placing sensitive data in the POST or GET and using server side code to handle sensitive information?</p>
http://stackoverflow.com/questions/818828/is-it-possible-to-implement-a-python-for-range-loop-without-an-iterator-variable7Is it possible to implement a Python for range loop without an iterator variable?James McMahon2009-05-04T05:06:46Z2009-11-16T10:23:22Z
<p>Is is possible to do this;</p>
<pre><code>for i in range(some_number):
#do something
</code></pre>
<p>without the i? If you just want to do something x amount of times and don't need the iterator.</p>
http://stackoverflow.com/questions/1730407/should-java-programs-compiled-with-debugging-information-not-be-used-in-a-product1Should Java programs compiled with debugging information not be used in a production system?James McMahon2009-11-13T16:41:08Z2009-11-13T18:22:18Z
<p>Is there any reason I should avoid compiling in debugging information with Javac in my Java classes for use in a production server? Are there any speed or security concerns I should be aware of?</p>
<p>Please note that I am referring to debugging information like line numbers in stack traces, not the debug level of loggers.</p>
<p><hr></p>
<h2>Related Question:</h2>
<ul>
<li><a href="http://stackoverflow.com/questions/218033/">Is there a performance difference
between Javac debug on and off?</a></li>
</ul>
http://stackoverflow.com/questions/516906/getting-column-length-from-hibernate-mappings0Getting column length from Hibernate mappings?James McMahon2009-02-05T17:20:39Z2009-11-12T19:45:49Z
<p>To validate data I am receiving I need to make sure that the length is not going to exceeded a database column length. Now all the length information is stored in the Hibernate mapping files, is there anyway to access this information programmatically?</p>
http://stackoverflow.com/questions/438146/hibernate-question-hbm2ddl-auto-possible-values-and-what-they-do/1689769#16897692Answer by James McMahon for Hibernate question hbm2ddl.auto possible values and what they doJames McMahon2009-11-06T19:25:02Z2009-11-06T19:30:22Z<p>From the <a href="http://docs.jboss.org/hibernate/core/3.3/reference/en/html/session-configuration.html#configuration-optional" rel="nofollow">community documentation</a>:</p>
<blockquote>
<p>hibernate.hbm2ddl.auto Automatically validates or exports schema DDL to the database when the SessionFactory is created. With create-drop, the database schema will be dropped when the SessionFactory is closed explicitly.</p>
<p>e.g. validate | update | create | create-drop </p>
</blockquote>
<p>So the list of possible options are,</p>
<ul>
<li><em>validate</em>: validate the schema, makes no changes to the database.</li>
<li><em>update</em>: update the schema.</li>
<li><em>create</em>: creates the schema, destroying previous data.</li>
<li><em>create-drop</em>: drop the schema at the end of the session.</li>
</ul>
<p>These options seem intended to be developers tools and not to facilitate any production level databases, you may want to have a look at the following question; <a href="http://stackoverflow.com/questions/221379/hibernate-hbm2ddl-autoupdate-in-production">Hibernate: hbm2ddl.auto=update in production?</a></p>
http://stackoverflow.com/questions/1667961/is-there-a-standard-for-code-margins0Is there a standard for code margins?James McMahon2009-11-03T15:17:06Z2009-11-03T20:24:03Z
<h2>Similar Questions</h2>
<blockquote>
<p><a href="http://stackoverflow.com/questions/95575/while-coding-how-many-columns-do-you-format-for">While coding, how many columns do you format for?</a>
<br><a href="http://stackoverflow.com/questions/131468/what-is-a-sensible-maximum-number-of-characters-per-line-of-code-closed">What is a sensible maximum number of characters per line of code?</a>
<br><a href="http://stackoverflow.com/questions/373561/do-people-still-live-by-the-80-column-rule-closed">Do people still live by the 80 column rule?</a>
<br><a href="http://stackoverflow.com/questions/746853/the-80-column-limit-still-useful">The 80 column limit, still useful?</a></p>
</blockquote>
<p><hr /></p>
<p>By code margins I am referring to the lines that guide how long a particular line of code is. Different IDEs have different language for this device, I believe Visual Studio calls them 'gutters'.</p>
<p>That being said, is there a particular standard to the length code margins? My IDE (Netbeans) has 80 by default but I was wondering if there was any rhyme or reason to that default.</p>
http://stackoverflow.com/questions/1615693/engines-built-on-pygame/1615715#16157155Answer by James McMahon for Engines built on pygameJames McMahon2009-10-23T20:27:02Z2009-10-26T19:54:07Z<p>Well Pygame itself is essentially a Python wrapper to SDL calls. I think in essence you would just be wrapping a wrapper.</p>
<p>You could always build your own adapter API, but what in particular about Pygame's API do you dislike so much that you feel you need to separate it from your code?</p>
<p>I think your generic methods, like custom collision detection, could be separated out into its own engine module, essentially separating it from the rest of your game code, but essentially you are just layering on top of Pygame with this approach, not wrapping it. </p>
<p><strong>EDIT:</strong><br>
Just as a follow up now that the question has changed. Short answer, no I'm not familiar with any. You may want to check out <a href="http://forums.tigsource.com/" rel="nofollow">The Independent Gaming Source forums</a>, those people seem fairly knowledge. Just make sure you post any answers you find back here.</p>
<p>Long answer, it could be possible that the "engine" space between the Pygame, which handles calls to SDL and I think some additional logic (like collision detection), and the game code itself is too small a space for anyone to write a generic library for it. Essentially different types of games have different engine requirements, and the generic parts of the engine that are shared across all game types seems to be covered by Pygame itself.</p>
<p>If you have written an RTS game in Pygame then you certainly could separate the RTS engine from your game logic, it would probably help your overall design by separating concerns. Also, it may be worth releasing that engine piece so that other people wanting to write a RTS in Pygame could benefit from it.</p>
http://stackoverflow.com/questions/1626925/getting-around-redundant-dependency-limitation-in-ant0Getting around redundant dependency limitation in Ant?James McMahon2009-10-26T19:43:13Z2009-10-26T19:46:20Z
<p>The limitation I'm referring to is documented <a href="http://en.wikibooks.org/wiki/Apache%5FAnt/Depends" rel="nofollow">here</a>.</p>
<p>Essentially, in my build script if I want to do a clean, build and then another clean I'm hitting an issue because Ant considers the clean task already complete.</p>
<p>Here is my ant;</p>
<pre><code><!-- ============================================================= -->
<!-- Clean up directories -->
<!-- ============================================================= -->
<target name="clean">
<delete dir="${dir.build}"/>
<delete dir="${dir.src}"/>
</target>
<!-- ============================================================= -->
<!-- Clean up ALL directories -->
<!-- ============================================================= -->
<target name="clean-all" depends="clean">
<delete dir="${dir.war}"/>
<delete dir="${dir.docs}"/>
</target>
<!-- ============================================================= -->
<!-- Clean-build target -->
<!-- ============================================================= -->
<target name="build-clean"
depends=
"build,
clean"
>
</target>
<!-- ============================================================= -->
<!-- Production target, cleans everything prior to build -->
<!-- ============================================================= -->
<target name="build-production"
depends=
"clean-all,
build-clean"
>
</target>
</code></pre>
<p>Build-production is the target I'm trying to correct, is there anyway to have it clean twice without creating another clean task or explicitly writing clean-all to delete the directories listed in clean?</p>
http://stackoverflow.com/questions/1111749/is-sharepoint-good-for-project-management2Is sharepoint good for project management?James McMahon2009-07-10T20:18:19Z2009-10-22T14:41:42Z
<p>Is Microsoft Sharepoint a good solution for software project management? Any gotchas I should be aware of? Can it integrate with SVN? Am I better off turning towards other solutions like Trac or Redmine?</p>
<p>I am familiar with this question</p>
<blockquote>
<p><a href="http://stackoverflow.com/questions/238661/software-project-management-in-sharepoint">Software Project Management in Sharepoint</a></p>
</blockquote>
<p>But I more interested in the opinions of other developers who have tried to use Sharepoint for this propose.</p>
http://stackoverflow.com/questions/1112207/is-there-a-way-to-hide-your-e-mail-address-on-google-code-projects2Is there a way to hide your e-mail address on Google Code projects?James McMahon2009-07-10T22:01:25Z2009-10-15T06:31:04Z
<p>One thing that really bothers me about Google Code is that fact that it puts your Google username up on your projects for the world to view. While it doesn't put the @gmail.com part after the name, it doesn't take a genius spammer to concatenate the part with your user name.</p>
<p><strong>Is there any way to hide or obscure your Google username on Google Code projects?</strong></p>
http://stackoverflow.com/questions/1560523/onlogn-algorithm-find-three-evenly-spaced-ones-within-binary-string/1563578#15635780Answer by James McMahon for O(nlogn) Algorithm - Find three evenly spaced ones within binary stringJames McMahon2009-10-13T23:53:05Z2009-10-13T23:53:05Z<p>This seemed liked a fun problem so I decided to try my hand at it.</p>
<p>I am making the assumption that 111000001 would find the first 3 ones and be successful. Essentially the number of zeroes following the 1 is the important thing, since 0111000 is the same as 111000 according to your definition. Once you find two cases of 1, the next 1 found completes the trilogy.</p>
<p>Here it is in Python:</p>
<pre><code>def find_three(bstring):
print bstring
dict = {}
lastone = -1
zerocount = 0
for i in range(len(bstring)):
if bstring[i] == '1':
print i, ': 1'
if lastone != -1:
if(zerocount in dict):
dict[zerocount].append(lastone)
if len(dict[zerocount]) == 2:
dict[zerocount].append(i)
return True, dict
else:
dict[zerocount] = [lastone]
lastone = i
zerocount = 0
else:
zerocount = zerocount + 1
#this is really just book keeping, as we have failed at this point
if lastone != -1:
if(zerocount in dict):
dict[zerocount].append(lastone)
else:
dict[zerocount] = [lastone]
return False, dict
</code></pre>
<p>This is a first try, so I'm sure this could be written in a cleaner manner. Please list the cases where this method fails down below.</p>
http://stackoverflow.com/questions/1545563/what-access-level-should-loggers-be-set-to2What access level should loggers be set to?James McMahon2009-10-09T19:07:34Z2009-10-09T19:14:44Z
<p>I'm using SLF4J with Log4J underneath. What access levels should I be setting my loggers to?</p>
<pre><code>static final Logger logger = LoggerFactory.getLogger(ClassName.class);
</code></pre>
http://stackoverflow.com/questions/1468375/how-do-you-return-two-values-from-a-single-method13How do you return two values from a single method?James McMahon2009-09-23T20:36:48Z2009-09-29T15:01:14Z
<p>When your in a situation where you need to return two things in a single method, what is the best approach?</p>
<p>I understand the philosophy that a method should do one thing only, but say you have a method that runs a database select and you need to pull two columns. I'm assuming you only want to traverse through the database result set once, but you want to return two columns worth of data.</p>
<p>The options I have come up with:</p>
<ol>
<li><strong>Use global variables to hold returns.</strong> <em>I personally try and avoid globals where I can.</em></li>
<li><strong>Pass in two empty variables as parameters then assign the variables inside the method, which now is a void.</strong> <em>I don't like the idea of methods that have a side effects.</em></li>
<li><strong>Return a collection that contains two variables.</strong> <em>This can lead to confusing code.</em></li>
<li><strong>Build a container class to hold the double return.</strong> <em>This is more self-documenting then a collection containing other collections, but it seems like it might be confusing to create a class just for the purpose of a return.</em></li>
</ol>
http://stackoverflow.com/questions/440337/what-programming-language-features-do-you-like/440848#4408480Answer by James McMahon for What programming language features do you like?James McMahon2009-01-13T21:23:55Z2009-09-28T23:39:56Z<p>It's funny for almost every feature I like, I can see a downside.</p>
<p>Duck typing is really nice, but it can sometimes lead to confusing method signatures (at least the way Python implements it).</p>
<p>C#'s lack of checked exceptions is nice, but the code isn't as self-documenting as Java checked exceptions. Unless you have a disciplined coder, you won't know some of the exceptions that the method may or may not throws at you.</p>
<p>Ironically both of my issues here can be solved by better documentation, but whenever you rely on a programmer to document more, there are always going to be people who won't.</p>
http://stackoverflow.com/questions/1150144/generating-random-sentences-from-custom-text-in-pythons-nltk0Generating random sentences from custom text in Python's NLTK?James McMahon2009-07-19T15:41:58Z2009-09-26T15:58:38Z
<p>I'm having trouble with the NLTK under Python, specifically the .generate() method.</p>
<blockquote>
<p>generate(self, length=100)</p>
<p>Print random text, generated using a trigram language model.</p>
<p>Parameters:</p>
<pre><code> * length (int) - The length of text to generate (default=100)
</code></pre>
</blockquote>
<p>Here is a simplified version of what I am attempting.</p>
<pre><code>import nltk
words = 'The quick brown fox jumps over the lazy dog'
tokens = nltk.word_tokenize(words)
text = nltk.Text(tokens)
print text.generate(3)
</code></pre>
<p>This will <em>always</em> generate</p>
<pre><code>Building ngram index...
The quick brown
None
</code></pre>
<p>As opposed to building a random phrase out of the words.</p>
<p>Here is my output when I do</p>
<pre><code>print text.generate()
Building ngram index...
The quick brown fox jumps over the lazy dog fox jumps over the lazy
dog dog The quick brown fox jumps over the lazy dog dog brown fox
jumps over the lazy dog over the lazy dog The quick brown fox jumps
over the lazy dog fox jumps over the lazy dog lazy dog The quick brown
fox jumps over the lazy dog the lazy dog The quick brown fox jumps
over the lazy dog jumps over the lazy dog over the lazy dog brown fox
jumps over the lazy dog quick brown fox jumps over the lazy dog The
None
</code></pre>
<p>Again starting out with the same text, but then varying it. I've also tried using the first chapter from Orwell's 1984. Again that <strong>always</strong> starts with the first 3 tokens (one of which is a space in this case) and <em>then</em> goes on to randomly generate text.</p>
<p>What am I doing wrong here?</p>
http://stackoverflow.com/questions/1438738/are-there-reasons-to-place-a-dependency-in-a-web-servers-lib-directory-instead-o1Are there reasons to place a dependency in a web server's lib directory instead of including it in the War file? James McMahon2009-09-17T12:59:51Z2009-09-18T13:14:39Z
<p>If I have an dependency Jar for my application is it better to place it in the war files lib directory or to place it in the global application server (like Tomcat) lib directory? What do I gain by using one approach over another?</p>
<p>Diskspace springs to mind, but we live in a time when diskspace is cheap. Is there a memory usage difference? Can someone with more experience then me list the pros and cons of both options?</p>
http://stackoverflow.com/questions/206161/how-do-you-get-the-length-of-a-list-in-the-jsf-expression-language/1361935#13619351Answer by James McMahon for How do you get the length of a list in the JSF expression language?James McMahon2009-09-01T11:28:25Z2009-09-01T12:09:58Z<p><a href="http://www.informit.com/articles/article.aspx?p=30946&seqNum=8" rel="nofollow">This article</a> has some more detailed information, including another possible solution;</p>
<blockquote>
<p>The problem is that we are trying to invoke the list's size method (which is a valid LinkedList method), but it's not a JavaBeans-compliant getter method, so the expression list.size-1 cannot be evaluated.</p>
<p>There are two ways to address this dilemma. First, you can use the RT Core library, like this:</p>
</blockquote>
<pre><code><c_rt:out value='<%= list[list.size()-1] %>'/>
</code></pre>
<blockquote>
<p>Second, if you want to avoid Java code in your JSP pages, you can implement a simple wrapper class that contains a list and provides access to the list's size property with a JavaBeans-compliant getter method. That bean is listed in Listing 2.25.</p>
</blockquote>
<p>The problem with c_rt method is that you need to get the variable from request manually, because it doesn't recognize it otherwise. At this point you are putting in a lot of code for what should be built in functionality. This is a <strong>GIANT</strong> flaw in the EL.</p>
<p>I ended up using the "wrapper" method, here is the class for it;</p>
<pre><code>public class CollectionWrapper {
Collection collection;
public CollectionWrapper(Collection collection) {
this.collection = collection;
}
public Collection getCollection() {
return collection;
}
public int getSize() {
return collection.size();
}
}
</code></pre>
<p>A third option that no one has mentioned yet is to put your list size into the model (assuming you are using MVC) as a separate attribute. So in your model you would have "someList" and then "someListSize". That may be simplest way to solve this issue.</p>
http://stackoverflow.com/questions/284578/design-or-prototype-first11Design or prototype first?James McMahon2008-11-12T16:49:43Z2009-08-25T14:37:04Z
<p>When first approaching a project is best to step back and think through everything or just dive in and start coding and polish at a later date? Essentially, do you design first or try to rapidly prototype?</p>
<p>I have been burned by both methods, sometimes I try and think everything through but when I actually get down to the nitty gritty I encounter problems that I didn't take in consideration, and sometimes when I code first I end with code that needs to redone to fit in with a better overall design. Alot of my problems stem from inexperience, but any advice is welcome.</p>
http://stackoverflow.com/questions/662650/convention-over-configuration-with-spring-mvc-using-controllerclassnamehandlermap2Convention over configuration with Spring MVC using ControllerClassNameHandlerMapping?James McMahon2009-03-19T15:29:04Z2009-08-25T00:27:50Z
<p>Following the directions from <a href="http://static.springframework.org/spring/docs/2.5.x/reference/mvc.html#mvc-coc" rel="nofollow">Spring Source</a> and the book Spring in Action, I am trying to set up Spring MVC in a way that minimizes xml configuration. However according to Spring Source this is how you set up the ControllerClassNameHandlerMap</p>
<pre><code><bean class="org.springframework.web.servlet.mvc.support.ControllerClassNameHandlerMapping"/>
<bean id="viewShoppingCart" class="x.y.z.ViewShoppingCartController">
<!-- inject dependencies as required... -->
</bean>
</code></pre>
<p>Which strikes me as being completely useless, as it is actually simpler to use the handlers to just set the beans manually, as it is about the same amount of XML.</p>
<p>Now the book Spring in Action makes it sound like all you need is the first line from that code block to use the ControllerClassNameHandlerMapping, which would make it far more useful. However, I have not yet been able to get this to work.</p>
<p>Can anyone with Spring experience help me out?</p>
http://stackoverflow.com/questions/1296223/what-should-the-accessablity-of-fields-in-a-abstract-class-be0What should the accessablity of Fields in a Abstract Class be?James McMahon2009-08-18T20:14:19Z2009-08-22T12:11:39Z
<p>To put it simply as an example,</p>
<pre><code>public abstract class AbstractFellow {
protected Thing buddy;
....
public class ConcreteFellow extends AbstractFellow {
public void someMethod() {
buddy.doSomething();
//OR
buddy = somethingElse;
//OR
somethingElse = buddy;
}
}
</code></pre>
<p>Is this bad practice?</p>
http://stackoverflow.com/questions/1312383/pulling-values-from-a-java-properties-file-in-order1Pulling values from a Java Properties file in order?James McMahon2009-08-21T14:43:17Z2009-08-21T15:30:22Z
<p>I have a properties file where the order of the values is important. I want to be able to iterate through the properties file and output the values based on the order of the original file. </p>
<p>However, since the Properties file is backed by, correct me if I'm wrong, a Map that does not maintain insertion order, <strong>the iterator returns the values in the wrong order</strong>.</p>
<p>Here is the code I'm using</p>
<pre><code> Enumeration names = propfile.propertyNames();
while (names.hasMoreElements()) {
String name = (String) names.nextElement();
//do stuff
}
</code></pre>
<p>Is there anyway to get the Properties back in order short of writting my own custom file parser?</p>
http://stackoverflow.com/questions/1310087/injecting-entitymanager-vs-entitymanagerfactory/1311473#13114730Answer by James McMahon for Injecting EntityManager Vs. EntityManagerFactoryJames McMahon2009-08-21T11:43:37Z2009-08-21T12:10:42Z<p>I think this has already been well covered, but just to reinforce a few points.</p>
<ul>
<li><p>The DAO, if injected by Spring, <strong>is a
singleton by default</strong>. You have to
explicitly set the scope to prototype
to create a new instance every time.</p></li>
<li><p>The entity manger injected by
@PersistenceContext <strong>is thread safe</strong>.</p></li>
</ul>
<p>That being said, I did have some issues on with a singleton DAO in my multi-threaded application. I ended up making the DAO a instanced bean and that solved the problem. So while the documentation may say one thing, you probably want to test your application thoroughly.</p>
<p><strong>Follow-up:</strong> </p>
<p>I think part of my problem is I am using </p>
<pre><code>@PersistenceContext(unitName = "unit",
type = PersistenceContextType.EXTENDED)
</code></pre>
<p>If you use PersistenceContextType.EXTENDED, keep in mind you have to, if I understand correctly, manually close the transaction. See <a href="http://forum.springsource.org/showthread.php?t=27430" rel="nofollow">this</a> thread for more information.</p>
http://stackoverflow.com/questions/1110328/is-using-synchronized-on-a-java-dao-going-to-cause-issues1Is using synchronized on a Java DAO going to cause issues?James McMahon2009-07-10T15:42:04Z2009-08-21T11:46:14Z
<p>Is using the 'synchronized' keyword on methods in a Java DAO going to cause issues when used by a web application?</p>
<p>I ask because I have a multi-threaded stand alone application that needs the methods to by synchronized to avoid resource conflict, as seen here.</p>
<pre><code>java.util.concurrent.ExecutionException: javax.persistence.PersistenceException: org.hibernate.HibernateException: Found shared references to a collection: com.replaced.orm.jpa.Entity.stuffCollection
</code></pre>
<p><strong>What I am concerned about is that when a significant number of people try and use the application that the synchronized methods will block and slow the entire application down.</strong></p>
<p>I am using a Spring injected JPA entity manager factory, which provides an entity manager to the DAO. I could technically remove the DAO layer and have the classes call the entity manager factory directly, but I enjoy the separation the DAO provides.</p>
<p>I should also note that I am being very careful not to pass around connected entity ORM objects between threads. I speculate that the resource conflict error comes about when accessing the DAO. I think multiple threads are going at the same time and try to persist or read from the database in non-atomic ways.</p>
<p>In this case is using a DAO going to do more harm then help?</p>
<p><hr /></p>
<p>A big piece of information I left out of the question is that the DAO is not a singleton. If I had been thinking lucidly enough to include that detail I probably wouldn't have asked the question in the first place.</p>
<p>If I understand correctly, Spring creates a new instance of the DAO class for each class that uses it. So the backing entity manager should be unique to each thread. Not sharing the entity manager is, as Rob H answered, the key thing here.</p>
<p>However, now I don't understand why I get errors when I remove synchronized.</p>
<p><hr /></p>
<p>According to this <a href="http://forum.springsource.org/showthread.php?t=33804" rel="nofollow">thread</a>, the @PersistenceContext annotation creates a thread-safe SharedEntityManager. So you should be able to create a singleton DAO.</p>
http://stackoverflow.com/questions/521110/examples-of-good-java-desktop-applications/1309178#13091780Answer by James McMahon for Examples of good Java desktop applicationsJames McMahon2009-08-20T22:28:40Z2009-08-20T22:28:40Z<h2><a href="http://www.mucommander.com/" rel="nofollow">Mucommander</a></h2>
<p><a href="http://www.mucommander.com/screenshots.php" rel="nofollow"><img src="http://www.mucommander.com/screenshots/1.png" alt="screenshot should be here" /></a></p>
http://stackoverflow.com/questions/1246678/what-is-the-state-of-open-source-java18What is the state of Open Source Java?James McMahon2009-08-07T19:49:45Z2009-08-18T19:58:01Z
<p><strong>What is the current state of Java's transition to an open source license</strong> (which <a href="http://en.wikipedia.org/wiki/Java%5F%28programming%5Flanguage%29" rel="nofollow">Wikipedia lists as the GNU General Public License / Java Community Process</a>)?</p>
<p>Java being inclusive of many things, including:</p>
<ul>
<li>The JVM</li>
<li>The JRE</li>
<li>The JDK </li>
<li>The Core Java Libraries</li>
<li>JavaME </li>
<li>JavaEE</li>
</ul>
<p>I've heard/read various things, but never seen it laid out in a straight, definitive, manner. However if you know about only a subsection of Java, don't hesitate to add an answer.</p>
<p>Just to clarify, this question is about the <strong>current</strong> state of the process, not what Sun may or may not do in the future.</p>
http://stackoverflow.com/questions/697778/spring-mvc-generating-a-form-backing-object-from-a-request3Spring MVC, generating a form backing object from a request?James McMahon2009-03-30T15:50:21Z2009-08-18T19:30:50Z
<p>I am using Spring MVC 2.5, and I am trying to get a JSTL form object to load from a GET request. I have Hibernate POJOs as my backing objects.</p>
<p>There is one page directing to another page with a class id (row primary key) in the request. The request looks like "newpage.htm?name=RowId". This is going into a page with a form backing object,</p>
<p>The newpage above, loads the fields of the object into editable fields, populated with the existing values of the row. The idea is, that you should be able to edit these fields and then persist them back into the database.</p>
<p>The view of this page looks something like this </p>
<pre><code><form:form commandName="thingie">
<span>Name:</span>
<span><form:input path="name" /></span>
<br/>
<span>Scheme:</span>
<span><form:input path="scheme" /></span>
<br/>
<span>Url:</span>
<span><form:input path="url" /></span>
<br/>
<span>Enabled:</span>
<span><form:checkbox path="enabled"/></span>
<br/>
<input type="submit" value="Save Changes" />
</form:form>
</code></pre>
<p>The controller has this in it,</p>
<pre><code>public class thingieDetailController extends SimpleFormController {
public thingieDetailController() {
setCommandClass(Thingie.class);
setCommandName("thingie");
}
@Override
protected Object formBackingObject(HttpServletRequest request) throws Exception {
Thingie thingieForm = (Thingie) super.formBackingObject(request);
//This output is always null, as the ID is not being set properly
logger.debug("thingieForm.getName(): [" + thingieForm.getName() + "]");
//thingieForm.setName(request.getParameter("name"));
SimpleDAO.loadThingie(thingieForm);
return thingieForm;
}
@Override
protected void doSubmitAction(Object command) throws Exception {
Thingie thingie = (Thingie) command;
SimpleDAO.saveThingie(thingie);
}
}
</code></pre>
<p>As you can see from the commented code, I've tried manually setting the object id (name is this case) from the request. However Hibernate complains about the object being desynched when I try and persist the data in the form.</p>
<pre><code>org.hibernate.StaleObjectStateException: Row was updated or deleted by another transaction (or unsaved-value mapping was incorrect)
</code></pre>
<p>This error seems to do something to the entire session, which stops working for my entire web application, continually throwing the Stale Object State Exception seen above.</p>
<p>If anyone familiar with Spring MVC can help me with this or suggest a workaround, I would really appreciate it.</p>
<p><strong>EDIT:</strong><br/>
Session factory code.</p>
<pre><code>private static final SessionFactory sessionFactory;
private static final Configuration configuration = new Configuration().configure();
static {
try {
// Create the SessionFactory from standard (hibernate.cfg.xml)
// config file.
sessionFactory = new AnnotationConfiguration().configure().buildSessionFactory();
} catch (Throwable ex) {
// Log the exception.
System.err.println("Initial SessionFactory creation failed." + ex);
throw new ExceptionInInitializerError(ex);
}
}
public static SessionFactory getSessionFactory() {
return sessionFactory;
}
</code></pre>
http://stackoverflow.com/questions/798027/running-an-installer-on-vista-without-turning-uac-off/798093#798093Comment by James McMahon on Running an installer on Vista without turning UAC offJames McMahon2009-11-25T12:56:03Z2009-11-25T12:56:03ZI do not know if it is break any rules, but applications that have the <i>"install this application for every/install this application for just me"</i> option use this approach. I see this everywhere so I assumed it was part of the Windows Installer.http://stackoverflow.com/questions/1770010/how-do-i-measure-time-elapsed-in-java/1770733#1770733Comment by James McMahon on How do I measure time elapsed in Java?James McMahon2009-11-20T14:59:25Z2009-11-20T14:59:25ZMost loggers also support timestamps as part of the logging output.http://stackoverflow.com/questions/1770010/how-do-i-measure-time-elapsed-in-java/1770278#1770278Comment by James McMahon on How do I measure time elapsed in Java?James McMahon2009-11-20T13:56:15Z2009-11-20T13:56:15ZYou may have a point. I don't know if that would ever have a measurable effect on performance, but it is probably good practice. However if you already have a Calendar object, or if you want to do more sophisticated manipulations that Calendar facilitates, then this approach may be valid.http://stackoverflow.com/questions/192456/setting-a-log-file-name-to-include-current-date-in-log4j/192744#192744Comment by James McMahon on Setting a log file name to include current date in Log4jJames McMahon2009-11-19T12:24:36Z2009-11-19T12:24:36ZJames, could you post the code inside your answer? Google pages is blocked from my work.http://stackoverflow.com/questions/192456/setting-a-log-file-name-to-include-current-date-in-log4j/192548#192548Comment by James McMahon on Setting a log file name to include current date in Log4jJames McMahon2009-11-19T12:19:22Z2009-11-19T12:19:22Z @gyrolf, applying the format you mention, do your logs end up as mylog.log.yyyy-MM-dd.log? Or are you somehow removing the previous extension?http://stackoverflow.com/questions/1757000/creating-daily-logs-with-log4j/1757076#1757076Comment by James McMahon on Creating daily logs with Log4j?James McMahon2009-11-19T12:11:51Z2009-11-19T12:11:51ZJust tested it using a minute pattern, yyyy-MM-dd-HH-mm-EE, EE resolves to the date name. http://stackoverflow.com/questions/1757000/creating-daily-logs-with-log4j/1757248#1757248Comment by James McMahon on Creating daily logs with Log4j?James McMahon2009-11-18T16:44:49Z2009-11-18T16:44:49Z@rsp, we are using windows on our servers, so the symbolic link solution is not feasible.http://stackoverflow.com/questions/1757000/creating-daily-logs-with-log4jComment by James McMahon on Creating daily logs with Log4j?James McMahon2009-11-18T16:27:09Z2009-11-18T16:27:09ZI've edited the question down to its simplest form to reduce confusion.http://stackoverflow.com/questions/1757000/creating-daily-logs-with-log4j/1757163#1757163Comment by James McMahon on Creating daily logs with Log4j?James McMahon2009-11-18T16:19:23Z2009-11-18T16:19:23Z@Pascal, I am going to clarify my question a little. How would I get the intended behavior that I am looking for? I am trying to shoe horn these logs in a legacy log viewer that department has.http://stackoverflow.com/questions/1757000/creating-daily-logs-with-log4jComment by James McMahon on Creating daily logs with Log4j?James McMahon2009-11-18T16:11:20Z2009-11-18T16:11:20Z@skaffman, That is intentional, I took it from that blog and from another source I looked at a while ago. I assumed it was to separate the Java date format from the text appended to the log filename.http://stackoverflow.com/questions/1757000/creating-daily-logs-with-log4j/1757050#1757050Comment by James McMahon on Creating daily logs with Log4j?James McMahon2009-11-18T16:08:24Z2009-11-18T16:08:24ZAnyway to make it append the datepattern by default?http://stackoverflow.com/questions/1730407/should-java-programs-compiled-with-debugging-information-not-be-used-in-a-product/1730482#1730482Comment by James McMahon on Should Java programs compiled with debugging information not be used in a production system?James McMahon2009-11-13T16:57:27Z2009-11-13T16:57:27ZAh, I knew this question was probably going to be a dupe, however I couldn't find anything in my searches.http://stackoverflow.com/questions/1730407/should-java-programs-compiled-with-debugging-information-not-be-used-in-a-product/1730450#1730450Comment by James McMahon on Should Java programs compiled with debugging information not be used in a production system?James McMahon2009-11-13T16:54:43Z2009-11-13T16:54:43ZI'm referring to debug information included by javac.http://stackoverflow.com/questions/1640333/best-practices-for-deploying-java-webapps-with-minimal-downtimeComment by James McMahon on Best practices for deploying Java webapps with minimal downtime?James McMahon2009-11-06T22:37:32Z2009-11-06T22:37:32Zknorv, have you tried adjusting your memory/permgem space on the server jvm?http://stackoverflow.com/questions/1667961/is-there-a-standard-for-code-margins/1668000#1668000Comment by James McMahon on Is there a standard for code margins?James McMahon2009-11-03T15:42:34Z2009-11-03T15:42:34ZNice to know where this standard originated.