User Gary Kephart - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T11:35:57Zhttp://stackoverflow.com/feeds/user/17967http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/583615/pdf-to-text-tool-or-java-library0PDF to text tool or Java library?Gary Kephart2009-02-24T21:07:35Z2009-12-07T13:47:56Z
<p>I need to convert a PDF to normal text (it's the "statement of votes" from our county registrar). The files are big (2000 pages or so) and mostly contain tables. Once I get it into text, then I'm going to use a program I'm writing to parse it and put the data into a database.
I've tried the 'Save as text' function in Adobe Reader, but it is not as precise as I'd like it, especially in delimiting the table data into CSV.
So, any recommendations for tools or Java libraries that would do the trick?</p>
http://stackoverflow.com/questions/978728/hibernate-not-using-where-clause-with-inner-join0hibernate not using where clause with inner joinGary Kephart2009-06-11T00:08:47Z2009-11-05T16:36:01Z
<p>Here's an excerpt from my code (I'm using XDoclet):</p>
<pre><code>/**
* @hibernate.class table="WIP_DISCRETE_JOBS"
*/
public class WipDiscreteJob extends AuditedObject
{
private WipDiscreteJobStatus status;
/**
* @hibernate.many-to-one column="STATUS_TYPE"
*/
public WipDiscreteJobStatus getStatus()
{
return status;
}
}
/**
* @hibernate.class
* table="apps.mfg_lookups"
* where="lookup_type = 'WIP_JOB_STATUS'"
*/
public class WipDiscreteJobStatus extends ManufacturingLookup
{
/**
* @hibernate.id column="LOOKUP_CODE"
* generator-class="assigned"
*/
public Long getId()
{
return this.id;
}
}
</code></pre>
<p>And here's some database definitions:</p>
<pre><code>APPS.MFG_LOOKUP (view)
Column Name Pk Data Type Null?
LOOKUP_TYPE VARCHAR2 (30 Byte) N
LOOKUP_CODE NUMBER Y
WIP_DISCRETE_JOBS
Column Name Pk Data Type Null?
STATUS_TYPE N NUMBER Yes
</code></pre>
<p>When I query on WipDiscreteJob and try to get a count of the results (using Criterias), the SQL, in part, looks like</p>
<pre><code>select count(*) as y0_
from WIP_DISCRETE_JOBS this_
inner join apps.mfg_lookups wipdiscret2_ on this_.STATUS_TYPE=wipdiscret2_.LOOKUP_CODE
inner join WIP_ENTITIES wipentity1_ on this_.WIP_ENTITY_ID=wipentity1_.WIP_ENTITY_ID
inner join WIP_SCHEDULE_GROUPS wipschedul4_ on this_.SCHEDULE_GROUP_ID=wipschedul4_.SCHEDULE_GROUP_ID
inner join INV.MTL_SYSTEM_ITEMS_B item3_ on this_.PRIMARY_ITEM_ID=item3_.INVENTORY_ITEM_ID and this_.ORGANIZATION_ID=item3_.ORGANIZATION_ID
where wipentity1_.WIP_ENTITY_NAME is not null
and wipdiscret2_.LOOKUP_CODE=3
and item3_.PLANNER_CODE='A5'
and wipschedul4_.SCHEDULE_GROUP_NAME='Area 2'
</code></pre>
<p>and I get an "invalid number" error when I run it. But when I add the "where" clause from the class...</p>
<pre><code>select count(*) as y0_
from WIP_DISCRETE_JOBS this_
inner join apps.mfg_lookups wipdiscret2_ on this_.STATUS_TYPE=wipdiscret2_.LOOKUP_CODE AND lookup_type = 'WIP_JOB_STATUS'
inner join WIP_ENTITIES wipentity1_ on this_.WIP_ENTITY_ID=wipentity1_.WIP_ENTITY_ID
inner join WIP_SCHEDULE_GROUPS wipschedul4_ on this_.SCHEDULE_GROUP_ID=wipschedul4_.SCHEDULE_GROUP_ID
inner join INV.MTL_SYSTEM_ITEMS_B item3_ on this_.PRIMARY_ITEM_ID=item3_.INVENTORY_ITEM_ID and this_.ORGANIZATION_ID=item3_.ORGANIZATION_ID
where wipentity1_.WIP_ENTITY_NAME is not null
and wipdiscret2_.LOOKUP_CODE=3
and item3_.PLANNER_CODE='A5'
and wipschedul4_.SCHEDULE_GROUP_NAME='Area 2'
</code></pre>
<p>and run it manually, it runs fine. Is this just a bug in Hibernate or am I missing something? How do I get Hibernate to add that "where" clause?</p>
http://stackoverflow.com/questions/1065968/spring-log4j-and-jboss40Spring, log4j and JBoss4Gary Kephart2009-06-30T20:47:47Z2009-11-02T05:00:02Z
<p>I'm running JBoss 4.2.3.GA, and have a web app that uses Spring and Log4j. I've set up Spring's Log4jConfigurer, but am having a problem since JBoss's log4j file is not on the classpath. It's at jboss.home/server/defaul/conf/jboss-log4j.xml. So, without hard-coding the path in Log4jConfigurer, how can I get Spring to use JBoss's log4j file?</p>
http://stackoverflow.com/questions/1467204/software-design-is-trial-and-error-approach-how-true-is-this-statement/1467814#14678140Answer by Gary Kephart for Software Design is Trial and Error Approach, how true is this statement?Gary Kephart2009-09-23T18:29:41Z2009-09-23T18:29:41Z<p>Once upon a time, the design of a hammer was surely trial and error. Nowadays, the product is a commodity. Right now, we have multiple corporations designing the same things over and over, I'm sure. Until we all decide to use the same design for some product, we'll keep redesigning it, and relearning the trials and errors that others have already bypassed.</p>
http://stackoverflow.com/questions/1455543/who-will-be-attending-oopsla-this-year-1Who will be attending OOPSLA this year?Gary Kephart2009-09-21T16:54:04Z2009-09-21T16:54:04Z
<p>Besides me. Any particular tutorials/workshops/panels that you are looking forward to?</p>
http://stackoverflow.com/questions/1446011/advice-on-a-useful-subject-undergraduates-should-learn/1446100#14461000Answer by Gary Kephart for Advice on a useful subject undergraduates should learnGary Kephart2009-09-18T18:13:51Z2009-09-18T18:20:03Z<p>Others have mentioned database design, which is really helpful, but there's something even higher level that you should learn: software engineering. You need to learn the process of developing software. From gathering requirements, to analysis, to design, to implementation, to testing, to deployment and to maintenance. You need to grasp the bigger picture and how you fit into it as a developer. You might very well be called into playing a part in those other tasks I mentioned. And you want to be. That's how you grow and become more valuable and how you move up in an organization.</p>
<p>I know there's not a lot of universities that offer that type of curriculum, but if you find some individual courses that offer those type of classes, take them.</p>
<p>Furthermore, join the ACM or some other computing organizations. I'll be going to OOPSLA in October and you might want to go as well. They offer student discounts. OOPSLA is more about general programming than say about one particular language. Very good stuff there. You can learn things that you won't be able to learn at a university. It's also a very good social networking opportunity.</p>
http://stackoverflow.com/questions/1413498/oc4j-enterprise-manager-console-session-timeout1oc4j enterprise manager console session timeout?Gary Kephart2009-09-11T22:04:10Z2009-09-12T11:51:22Z
<p>How can I change the session timeout for the OC4J Enterprise Manager console?
It times out too quickly between deployments in our development environment.</p>
http://stackoverflow.com/questions/1323930/2008-tiger-line-shapefiles-from-census-gov-google-maps/1323972#13239720Answer by Gary Kephart for 2008 TIGER/Line® Shapefiles from Census.gov -> Google MapsGary Kephart2009-08-24T18:29:57Z2009-08-24T18:29:57Z<p>I had better luck using the ARC files at <a href="http://www.census.gov/geo/www/cob/index.html" rel="nofollow">http://www.census.gov/geo/www/cob/index.html</a>
I can't find the webpage right now, but I did find one that had actual code. Google something like "arc to kml" and go from there.</p>
http://stackoverflow.com/questions/1234638/migrating-from-velocity-to-jsps1Migrating from Velocity to JSPsGary Kephart2009-08-05T17:28:25Z2009-08-11T21:10:39Z
<p>As part of a project I'm working on, we're migrating from Velocity to JSP. I need to turn the set of existing Velocity templates into JSPs. We could spend hours discussing why this was decided (partly my fault), which one is better and the best way to dissuade management from this path, but that would be a waste of time as they are committed to having this done.</p>
<p>So, what I'm looking for is a set of patterns, best practices, what have you, to help me out. There's a lot of Velocity macros in the global library file which are used across a variety of templates. I'm thinking of converting each macro to a JSP scriptlet and translating the macro to Java. Then I would include that file with all the scriptlets into each JSP either via the include directive or jsp:include. I was also thinking of converting each call to a macro into a scriptlet. These macros have parameters that are beans defined in the Spring ModelAndView class.</p>
<p>Preliminary tests seems to indicate that this approach won't work. I seem to be getting JSP compile errors. But, I might be missing an error on my part.</p>
<p>I'm running this web app on OC4J version 10.1.3.4.0.</p>
<p>Here's a simple example of what I have to deal with. This is in the VM_global_library.vm file:</p>
<pre><code>#macro( showObjectErrors $objectName)
#if ($request.errorSystem.hasErrors($objectName))
<table>
#foreach ($error in $request.errorSystem.getErrors($objectName))
<tr>
<td class="acError">$error</td>
</tr>
#end
</table>
#end
#end
</code></pre>
<p>And it's called in other files like so:</p>
<pre><code>#showObjectErrors( "logonForm" )
</code></pre>
<p>Note that the "request" object is not an HttpServletRequest, but an application class.
There are much more complex examples that are too much to show.</p>
http://stackoverflow.com/questions/1224569/google-earth-heat-maps/1224922#12249220Answer by Gary Kephart for Google Earth Heat MapsGary Kephart2009-08-03T22:23:56Z2009-08-03T22:23:56Z<p>You can create polygons in a KML file and set the color of them. You can also make the polygons 3D, with height perhaps representing temperature.</p>
http://stackoverflow.com/questions/1066589/java-iterate-through-hashmap/1066614#10666140Answer by Gary Kephart for java: iterate through HashMapGary Kephart2009-06-30T23:29:10Z2009-06-30T23:29:10Z<p>Depends. If you know you're going to need both the key and the value of every entry, then go through the entrySet. If you just need the values, then there's the values() method. And if you just need the keys, then use keyset().
A bad practice would be to iterate through all of the keys, and then within the loop, always do map.get(key) to get the value. If you're doing that, then the first option I wrote is for you.</p>
http://stackoverflow.com/questions/1041168/what-are-the-best-practices-for-technical-reports/1041270#10412700Answer by Gary Kephart for What are the best practices for technical reportsGary Kephart2009-06-24T22:07:02Z2009-06-24T22:07:02Z<p>I'd say that a nice set of unit tests is probably better than a technical report.</p>
http://stackoverflow.com/questions/995981/is-it-essential-to-understand-computers-to-be-a-good-programmer/997278#9972781Answer by Gary Kephart for Is it essential to understand computers to be a good programmer?Gary Kephart2009-06-15T17:17:52Z2009-06-15T17:17:52Z<p>I think it helps to understand the fundamentals. You should learn how to do something the hard way so that you appreciate doing it the easy way and understand exactly how the easy way is helping you. So, it's good to learn C/C++ so that you know how Java helps in abstracting away from the OS. It's good to learn how compilers work so that you know why programming in a higher-level language is helpful. It's good to learn AND/OR gates so you have a basic understanding of transistors.</p>
<p>That being said, I never learned what exactly the process was to go from hardware to software (hmm, analogous to abiogenesis?). I understand logic gates, but don't understand how you tell the hardware to send electrons to the right spot. I also think that networking is this big black magical mystery. I know how to open sockets, but I don't know what goes on beneath the covers. Has this hindered me in being a good/great software engineer? Not that I can tell.</p>
http://stackoverflow.com/questions/947586/need-spring-version-only-have-spring-jar-file2Need Spring version# - only have spring.jar fileGary Kephart2009-06-03T22:25:38Z2009-06-05T08:17:57Z
<p>I've inherited an app that uses Spring. The original developers are not available. The Spring jar file is just "spring.jar", so there's no version# in the filename to help me. I'd like to download the Spring source corresponding to the jar file. The MANIFEST.MF file has "Spring-Version: 1.2" however that's not precise enough. I've looked at version 1.2.1 and 1.2.9 and it doesn't match up quite right. The key thing is that <code>org.springframework.web.servlet.view.AbstractCachingViewResolver</code> has a <code>prepareView</code> method which is called from <code>resolveViewName</code> and it does not seem to be in 1.2.1 or 1.2.9.</p>
<p>Is there any easy way to track down the right version?</p>
http://stackoverflow.com/questions/928541/jsps-and-trademark-symbol0JSPs and trademark symbolGary Kephart2009-05-29T23:27:38Z2009-05-29T23:49:21Z
<p>On the web pages in our app, the trademark symbol (TM) is appearing as a questions mark. The registered trademark (R) works, though. We are displaying the value using the c:out tag in the JSP standard library. If I put &trade; or &#8482; on the page to test this, those show up as they are supposed to.</p>
<pre><code><td><c:out value="${item.description}"/></td> <!-- does not work -->
<td>yada yada yada Spiros&trade; yada yada yada</td> <!-- works -->
</code></pre>
<p>To add to this, we're also using YUI, and before we display these pages, they show up in a YUI data table as the results of a query (the user clicks on a row to go to the page described above). The (TM) shows up properly in that table. That tells me that we are properly fetching the value from our database, and as well the server code generating the XML to send back to the YUI data table also works.</p>
<p>So why is the same String displayed properly in the YUI data table, but not in a normal JSP, unless we hardcode the symbol onto the page?</p>
http://stackoverflow.com/questions/926938/how-to-load-a-image-from-web-in-java/926990#9269900Answer by Gary Kephart for how to load a image from web in javaGary Kephart2009-05-29T16:44:41Z2009-05-29T16:44:41Z<pre><code>URL url = new URL("http://host/theimage.jpg");
URLConnection conn = new URLConnection(url);
InputStream in = conn.getInputStream();
</code></pre>
<p>is that enough to start you? Don't know what you want to do from there.</p>
http://stackoverflow.com/questions/899803/have-i-implemented-a-n-tier-application-with-mvc-correctly/899891#8998911Answer by Gary Kephart for Have I implemented a n-tier application with MVC correctly?Gary Kephart2009-05-22T20:38:19Z2009-05-22T20:38:19Z<blockquote>
<p>I'm not sure if I can call this n-tier MVC when the models are lists/VO's returned from business objects in the logic tier</p>
</blockquote>
<p>Those are perfectly good models. I also consider the ActionForms in Struts to be models. ActionForms are what Struts uses to represent/model HTML forms.</p>
<blockquote>
<p>in MVC the view is supposed to observe the model and update on change, but this isn't possible in a web-application</p>
</blockquote>
<p>Yep, and that is a matter of debate as to whether you can have true MVC with web-applications.</p>
<blockquote>
<p>Should one always have a business layer?</p>
</blockquote>
<p>It depends on the type of application. Some applications are database-driven, and are essentially a UI for the database. In that case, there's very little business logic required.</p>
<blockquote>
<p>Data Tier:</p>
</blockquote>
<p>The stored procedures aren't really part of the data tier code. You should be creating data access objects (DAOs) which are called by the business objects. The DAOs call the stored procedures. Further, the DAO interfaces should give no hint to the business objects as to where the data is stored, whether that be a database or file system or from some web service.</p>
http://stackoverflow.com/questions/898664/why-dont-ides-support-dynamic-formatting/899022#899022-1Answer by Gary Kephart for Why don't IDEs support dynamic formatting?Gary Kephart2009-05-22T17:31:15Z2009-05-22T17:31:15Z<p>I think it's about time that the IDEs start storing their code as XML, and then use a user-defined XSL stylesheet to format the code upon presentation.</p>
http://stackoverflow.com/questions/870029/hibernate-order-by-association1hibernate order by associationGary Kephart2009-05-15T17:49:37Z2009-05-15T20:47:48Z
<p>I'm using Hibernate 3.2, and using criteria to build a query. I'd like to add and "order by" for a many-to-one association, but I don't see how that can be done.
The Hibernate query would end up looking like this, I guess:</p>
<pre><code>select t1.a, t1.b, t1.c, t2.dd, t2.ee
from t1
inner join t2 on t1.a = t2.aa
order by t2.dd <-- need to add this
</code></pre>
<p>I've tried criteria.addOrder("assnName.propertyName") but it doesn't work. I know it can be done for normal properties. Am I missing something?</p>
http://stackoverflow.com/questions/870029/hibernate-order-by-association/870802#8708022Answer by Gary Kephart for hibernate order by associationGary Kephart2009-05-15T20:47:48Z2009-05-15T20:47:48Z<p>Ok, found the answer. I tried something that I didn't think would work, but to my surprise did. I was trying this:</p>
<pre><code>Criteria criteria = super.getSession().createCriteria(WipDiscreteJob.class);
criteria.addOrder(Order.asc("assnName.propertyName"))
</code></pre>
<p>but what actually worked was:</p>
<pre><code>Criteria criteria = super.getSession().createCriteria(WipDiscreteJob.class);
Criteria assnCrit = criteria.createCriteria("assnName");
assnCrit.addOrder(Order.asc("propertyName"));
</code></pre>
<p>I had made the assumption that the addOrder() method was only usable on the main criteria and not on any association criteria.</p>
http://stackoverflow.com/questions/865039/how-to-create-an-inputstream-from-a-document-or-node/865095#8650953Answer by Gary Kephart for how to create an InputStream from a Document or NodeGary Kephart2009-05-14T18:59:35Z2009-05-14T18:59:35Z<pre><code>ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
Source xmlSource = new DOMSource(doc);
Result outputTarget = new StreamResult(outputStream);
TransformerFactory.newInstance().newTransformer().transform(xmlSource, outputTarget);
InputStream is = new ByteArrayInputStream(outputStream.toByteArray());
</code></pre>
http://stackoverflow.com/questions/864326/yui-and-server-side-pagination0yui and server-side paginationGary Kephart2009-05-14T16:20:46Z2009-05-14T18:58:15Z
<p>I'm using YUI 2.7.0, and I've gotten the client-side pagination down, and am now trying to get the server-side pagination down (The query could possibly return thousands of results). Right now, no results are being shown (I get the "No records found." message). Can't seem to find an answer on the web. The call to alert() shows the correct numbers, so I know something is being returned from the server. I suspect the issue is in jobsCallback or handleDataReturnPayload but am stuck from there. Any hints?</p>
<pre><code> function jobStatusFormatter(elCell, oRecord, oColumn, oData)
{
var messages =
[
<c:forEach var="x" begin="0" end="17">
"<fmt:message key="job.status.${x}"/>",
</c:forEach>
];
elCell.innerHTML = messages[oData];
}
var jobColumns =
[
{key:"lotNumber", label:"<fmt:message key="job.lotNumber"/>", sortable:true},
{key:"scheduledStartDate", label:"<fmt:message key="job.startDate"/>", sortable:true, formatter:"date"},
{key:"scheduledCompletionDate", label:"<fmt:message key="job.completionDate"/>", sortable:true, formatter:"date"},
{key:"itemNumber", label:"<fmt:message key="job.itemNumber"/>", sortable:true},
{key:"statusType", label:"<fmt:message key="job.statusType"/>", sortable:true, formatter:jobStatusFormatter},
{key:"plannerCode", label:"<fmt:message key="job.plannerCode"/>", sortable:true},
{key:"scheduledGroup", label:"<fmt:message key="job.scheduledGroup"/>", sortable:true},
{key:"organization", label:"<fmt:message key="job.organization"/>", sortable:true}
];
var jobsDataSource = new YAHOO.util.DataSource("<%=request.getContextPath()%>/secure/xml/jobs.do?");
jobsDataSource.connMethodPost = true;
jobsDataSource.responseType = YAHOO.util.DataSource.TYPE_XML;
jobsDataSource.responseSchema =
{
resultNode: "job",
fields:
[
"id",
"lotNumber",
"plannerCode",
"scheduledGroup",
"scheduledStartDate",
"scheduledCompletionDate",
"itemNumber",
"statusType",
"organization"
],
metaNode: "jobs",
metaFields:
{
totalResultsAvailable : "totalResultsAvailable",
totalResultsReturned : "totalResultsReturned"
}
};
var jobsConfigs =
{
initialLoad: false,
dynamicData: true,
paginator: new YAHOO.widget.Paginator(
{
rowsPerPage:15,
rowsPerPageOptions : [15,25,50,100]
})
};
var jobsTable = new YAHOO.widget.DataTable("jobsDiv", jobColumns, jobsDataSource, jobsConfigs);
jobsTable.subscribe("rowMouseoverEvent", jobsTable.onEventHighlightRow);
jobsTable.subscribe("rowMouseoutEvent", jobsTable.onEventUnhighlightRow);
jobsTable.set("selectionMode","single");
jobsTable.subscribe("rowClickEvent", function(args)
{
var target = args.target;
var record = this.getRecord(target);
window.location="job.do?id="+record.getData("id");
});
jobsTable.handleDataReturnPayload = function(oRequest, oResponse, oPayload)
{
alert("totalResultsAvailable="+oResponse.meta.totalResultsAvailable+", totalResultsReturned="+oResponse.meta.totalResultsReturned);
oPayload.totalRecords = oResponse.meta.totalResultsAvailable;
return oPayload;
};
var jobsCallback =
{
success : jobsTable.onDataReturnInitializeTable ,
failure : jobsTable.onDataReturnInitializeTable ,
scope : jobsTable
};
function getQueryParams()
{
var form = document.forms[0];
var lotNumber = form.lotNumber.value;
var itemNumber = form.itemNumber.value;
var plannerCode = form.plannerCode.value;
var scheduledGroup = form.scheduledGroup.value;
var statusType = form.statusType.value;
var organization = form.organization.value;
return "lotNumber="+lotNumber+
"&itemNumber="+itemNumber+
"&statusType="+statusType+
"&plannerCode="+plannerCode+
"&scheduledGroup="+scheduledGroup+
"&organization="+organization;
}
/* Called when submit button pressed */
function findJobs()
{
// Sends a request to the DataSource for more data
jobsTable.showTableMessage(YAHOO.widget.DataTable.MSG_LOADING);
jobsDataSource.sendRequest(getQueryParams(), jobsCallback);
}
</code></pre>
http://stackoverflow.com/questions/813190/what-was-the-most-difficult-concept-you-had-to-grasp-throughout-your-entire-softw/813360#8133601Answer by Gary Kephart for What was the most difficult concept you had to grasp throughout your entire software development career?Gary Kephart2009-05-01T21:20:46Z2009-05-01T21:20:46Z<p>1) EJBs. It was my first foray into remote calls. Finally one day it just clicked. I still don't have the different types of transations down, though.</p>
<p>2) Incomplete requirements. At first I just didn't understand why you couldn't, with enough time, get a complete set of requirements <em>before</em> the project started. This goes with the "People" answer that was already given.</p>
http://stackoverflow.com/questions/812233/getting-events-from-a-database/812514#8125140Answer by Gary Kephart for Getting Events from a DatabaseGary Kephart2009-05-01T18:13:11Z2009-05-01T18:13:11Z<p>This is usually what the standard client/server application is for. If all inserts/updates/deletes go through the server application, which then modifies the database, then client applications can find out much easier what changes were made.</p>
http://stackoverflow.com/questions/808491/swing-how-to-create-events-and-dispatch-them-to-a-component/808526#8085262Answer by Gary Kephart for Swing: How to create Events and dispatch them to a component?Gary Kephart2009-04-30T18:59:36Z2009-04-30T18:59:36Z<p>I believe that you have to construct an instance of the event and then call</p>
<pre><code>java.awt.EventQueue.dispatchEvent(event)
</code></pre>
<p>Set the source of the event to the desired component.</p>
http://stackoverflow.com/questions/803466/implicit-super-interface-in-java0implicit super-interface in Java?Gary Kephart2009-04-29T17:39:35Z2009-04-29T17:47:50Z
<p>So we all know that all classes implicitly extend Object. How about interfaces? Is there an implicit super-interface? I say there is. The following code compiles:</p>
<pre><code>java.io.Serializable s1 = null;
java.io.Serializable s2 = null;
s1.equals(s2);
</code></pre>
<p>The <code>equals</code> method is not declared in Serializable, but in Object. Since interfaces can only extend other interfaces, and Object is a class, not an interface, there must be some implicit interface that is being extended. And the <code>Object</code> class must then implicitly implement this implicit interface (wow, that was weird to write).</p>
<p>So, the question is, how correct is this?</p>
http://stackoverflow.com/questions/90002/what-is-a-reasonable-code-coverage-for-unit-tests-and-why/795683#7956830Answer by Gary Kephart for What is a reasonable code coverage % for unit tests (and why)?Gary Kephart2009-04-27T23:29:07Z2009-04-27T23:29:07Z<p>I use cobertura, and whatever the percentage, I would recommend keeping the values in the cobertura-check task up-to-date. At the minimum, keep raising totallinerate and totalbranchrate to just below your current coverage, but <em>never</em> lower those values. Also tie in the Ant build failure property to this task. If the build fails because of lack of coverage, you know someone's added code but hasn't tested it. Example:</p>
<pre><code><cobertura-check linerate="0"
branchrate="0"
totallinerate="70"
totalbranchrate="90"
failureproperty="build.failed" />
</code></pre>
http://stackoverflow.com/questions/775279/ant-task-to-copy-properties-file-to-their-corresponding-place-in-the-java-build-d/775287#7752873Answer by Gary Kephart for ant task to copy properties file to their corresponding place in the java build dirGary Kephart2009-04-22T00:41:33Z2009-04-22T00:41:33Z<p>From the Ant manual about the task:</p>
<blockquote>
<p>Copies a file or resource collection to a new file or directory. By default, files are only copied if the source file is newer than the destination file, or when the destination file does not exist. However, you can explicitly overwrite files with the overwrite attribute.</p>
</blockquote>
http://stackoverflow.com/questions/164432/what-real-life-bad-habits-has-programming-given-you/762635#7626351Answer by Gary Kephart for What real life bad habits has programming given you?Gary Kephart2009-04-18T00:32:43Z2009-04-18T00:35:55Z<p>I'm losing the ability to write manually because I've been typing everything for so long. I can no longer handwrite except for my signature. My standard writing sucks as well, and I have to keep it in all caps for it to be legible. And it all takes soooo much longer than typing.</p>
<p>Also, I've referred to cities as being not "user-friendly" because the street signs are hidden or missing.</p>
http://stackoverflow.com/questions/757594/what-is-the-best-choice-for-a-corprate-wiki-blog-software-tool/757614#7576140Answer by Gary Kephart for What is the best choice for a corprate wiki/blog software toolGary Kephart2009-04-16T19:13:50Z2009-04-16T19:13:50Z<p>I like JSPWiki.</p>
http://stackoverflow.com/questions/1455543/who-will-be-attending-oopsla-this-yearComment by Gary Kephart on Who will be attending OOPSLA this year?Gary Kephart2009-09-21T17:12:21Z2009-09-21T17:12:21ZThis is a developer's conference. I've marked this question as community wiki. I'd appreciate knowing why it's getting marked down.http://stackoverflow.com/questions/1234638/migrating-from-velocity-to-jsps/1234661#1234661Comment by Gary Kephart on Migrating from Velocity to JSPsGary Kephart2009-08-06T16:18:48Z2009-08-06T16:18:48ZThis seems like the best fit. I haven't used JSP 2.0 so those tag files are new to me. It'll be fun to try them out.
BTW, "hasErrors" is actually a method, not an object, and it requires a param, so I'll have to create a regular custom tag for that.http://stackoverflow.com/questions/1234638/migrating-from-velocity-to-jspsComment by Gary Kephart on Migrating from Velocity to JSPsGary Kephart2009-08-05T20:25:46Z2009-08-05T20:25:46ZI have a set of Velocity template files. I need to turn them into JSPs.http://stackoverflow.com/questions/1099430/returning-a-value-to-a-swing-class-from-another-swing-classComment by Gary Kephart on Returning A Value To a Swing Class from another Swing Class Gary Kephart2009-07-08T17:25:37Z2009-07-08T17:25:37ZFYI: Swing is not an acronym, so you don't need to write it in all caps.http://stackoverflow.com/questions/1065968/spring-log4j-and-jboss4Comment by Gary Kephart on Spring, log4j and JBoss4Gary Kephart2009-07-01T04:45:53Z2009-07-01T04:45:53ZI'm using:
<bean id="log4jInitialization" class="org.springframework.beans.factory.config.MethodInvokingFactoryBean">
<property name="targetClass"
value="org.springframework.util.Log4jConfigurer" />
http://stackoverflow.com/questions/1065968/spring-log4j-and-jboss4/1065987#1065987Comment by Gary Kephart on Spring, log4j and JBoss4Gary Kephart2009-06-30T23:24:59Z2009-06-30T23:24:59ZNormally, that is the case. However, with Spring there's an issue. I believe it's because there's a log4j.xml within the spring.jar files. Therefore, you have to tell Spring to look somewhere else for the configuration. See <a href="http://firstpartners.net/kb/index.php/Spring_Pointer_to_Log4j_Configuration_File" rel="nofollow">firstpartners.net/kb/index.php/…</a>http://stackoverflow.com/questions/1065968/spring-log4j-and-jboss4/1065987#1065987Comment by Gary Kephart on Spring, log4j and JBoss4Gary Kephart2009-06-30T21:19:13Z2009-06-30T21:19:13ZRight, I'm trying to avoid using my own log4j.xml file and only use JBoss's jboss-log4j.xml and modify it by adding appenders and categories. That I do by hand. Now, I want my web-app to read that file, or rather I want my web-app to tell Spring (via Log4jConfigurer) to read that file and use it for its configuration.http://stackoverflow.com/questions/978728/hibernate-not-using-where-clause-with-inner-join/979144#979144Comment by Gary Kephart on hibernate not using where clause with inner joinGary Kephart2009-06-12T18:02:08Z2009-06-12T18:02:08ZI've now put in the complete query. I was trying to be kind and keep the clutter out. The "where" clause I am referring to is actually in the XDoclet comments for the WipDiscreteJobStatus class. Note that whenever that class is queried, then "lookup_type = 'WIP_JOB_STATUS'" needs to be a part of the "where" clause, or added onto the ON clause of an inner join.http://stackoverflow.com/questions/981899/how-is-using-portlets-any-better-than-just-using-server-side-includesComment by Gary Kephart on How is using portlets any better than just using server side includes?Gary Kephart2009-06-11T17:14:36Z2009-06-11T17:14:36ZYou and me both. It seems to me to be a solution in search of a problem.http://stackoverflow.com/questions/978728/hibernate-not-using-where-clause-with-inner-join/979144#979144Comment by Gary Kephart on hibernate not using where clause with inner joinGary Kephart2009-06-11T16:57:16Z2009-06-11T16:57:16Zok, I've added more info. Sufficient?http://stackoverflow.com/questions/978728/hibernate-not-using-where-clause-with-inner-joinComment by Gary Kephart on hibernate not using where clause with inner joinGary Kephart2009-06-11T00:16:57Z2009-06-11T00:16:57ZI don't use any custom SQL. Hibernate generates the first query you see there.http://stackoverflow.com/questions/957502/should-i-use-this-always-often-or-neverComment by Gary Kephart on Should I use this. always, often, or never?Gary Kephart2009-06-05T19:02:05Z2009-06-05T19:02:05Zduplicate of <a href="http://stackoverflow.com/questions/132777/do-you-prefix-your-instance-variable-with-this-in-java/134600#134600" rel="nofollow" title="do you prefix your instance variable with this in java">stackoverflow.com/questions/132777/…</a>http://stackoverflow.com/questions/947586/need-spring-version-only-have-spring-jar-file/947679#947679Comment by Gary Kephart on Need Spring version# - only have spring.jar fileGary Kephart2009-06-03T23:23:29Z2009-06-03T23:23:29ZBut, thanks for getting me close with the SpringVersion.getVersion method.http://stackoverflow.com/questions/947586/need-spring-version-only-have-spring-jar-file/947679#947679Comment by Gary Kephart on Need Spring version# - only have spring.jar fileGary Kephart2009-06-03T23:14:51Z2009-06-03T23:14:51ZExcept that there's no download for just "1.2". There's 1.2.0, 1.2.0.RC1 and 1.2.0.RC2. I took the time to download all of them, and it looks like I have either RC1 or RC2, both of which have the <code>prepareView</code> method. Just 1.2.0 does not have it though.http://stackoverflow.com/questions/947586/need-spring-version-only-have-spring-jar-file/947679#947679Comment by Gary Kephart on Need Spring version# - only have spring.jar fileGary Kephart2009-06-03T22:49:50Z2009-06-03T22:49:50ZIt came back as "1.2" :(