User Tim - Stack Overflowmost recent 30 from stackoverflow.com2009-12-06T17:53:05Zhttp://stackoverflow.com/feeds/user/53444http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1819956/framework-to-expose-a-web-service-as-a-website0Framework to expose a web service as a websiteTim2009-11-30T13:54:21Z2009-12-01T15:37:38Z
<p>Hello all,</p>
<p>Just wanted to ask if anyone knows of a <strong>reliable & easy way to expose a webservice (wsdl) as a website</strong> to end-users.</p>
<p>Our team develops a lot of software for external contacts, which often involve creating a web service and exposing it as both a wsdl and a website.
We'd like to automate this last step as much as possible (especially for the mindless data-pumping projects) so we can concentrate on developing web services instead of websites.</p>
<p>I recently came across Enunciate, <strike>but have not found the time yet to play with it in detail</strike>. I was wondering if anyone has any experience with it (or with any similar projects) what your findings are, and what direction you would advice us to take with this.</p>
<p>Best regards,
Tim</p>
<p><hr></p>
<p><strong>Update</strong>:
Fiddled around with Enunciate a bit, but can't even get it to run yet.. Both Maven and Programmatic compilation of the example project fail with different errors. (Might expand those into a question one of these days).</p>
<p>As such I've removed the Enunciate tag, as <strong>answers concerning any framework are welcome</strong>.. Java has some preference, but any other-language frameworks fitting the above requirements are welcome as well..</p>
http://stackoverflow.com/questions/1761604/how-to-limit-upload-file-size-in-wicket/1820799#18207991Answer by Tim for How to limit upload file size in WicketTim2009-11-30T16:19:49Z2009-11-30T16:19:49Z<p>The documentation on Form says:</p>
<blockquote>
<p>In case of an upload error two
resource keys are available to specify
error messages: uploadTooLarge and
uploadFailed ie in [page].properties
[form-id].uploadTooLarge=You have
uploaded a file that is over the
allowed limit of 2Mb</p>
</blockquote>
<p>My guess is those get fired in form submit validation..
Have you tried to see if this is the case?</p>
http://stackoverflow.com/questions/1815576/the-buttons-are-working-but-they-are-interacting-with-the-compiler-not-the-gui/1815607#18156071Answer by Tim for The buttons are working but they are interacting with the compiler not the gui? Tim2009-11-29T14:00:22Z2009-11-29T14:00:22Z<p>I'm gonna guess you mean</p>
<ul>
<li>the buttons "Print integers on the commandline / console" instead of "add integers on the compiler". </li>
<li>and "the User interface is not updated" instead of "buttons do not interact with the GUI"</li>
</ul>
<p>To solve the first problem remove or comment out the System.out.println(index) statements.</p>
<p>To solve the second problem we'd need to know what kind of GUI you're building, and see if and where you tell the GUI to update..</p>
http://stackoverflow.com/questions/1802975/unit-testing-modalwindows-content-refresh-fails-while-the-actual-functionality-w/1811015#18110151Answer by Tim for Unit testing ModalWindow's content refresh fails while the actual functionality works as expected - what am I doing wrong?Tim2009-11-27T23:38:51Z2009-11-27T23:38:51Z<p>I'm gonna go out on a limb here and say: Add your Panel component to a Page for testing.. </p>
<p>AFAIK you can't test individual components, but should set up a test by getting a page and doing asserts on that..</p>
<p>This is what I use for testing:</p>
<pre><code>public class TestHomePage {
private static WicketTester tester;
@BeforeClass
public static void setUp() {
tester = new WicketTester(new WicketApplication() {
@Override
protected void init() {
//Override init to use SpringUtil's SpringContext due to missing WebApplicationContext
addComponentInstantiationListener(new SpringComponentInjector(this, SpringUtil.getContext()));
}
});
}
@Test
public void testRenderMyPage() {
//start and render the test page
tester.startPage(HomePage.class);
//assert rendered page class
tester.assertRenderedPage(HomePage.class);
//assert page contents
tester.assertContains("Welcome to my webpage");
}
}
</code></pre>
<p>Please do correct me if I'm wrong!</p>
http://stackoverflow.com/questions/1804220/displaying-html-text-within-a-wicket-element/1811000#18110002Answer by Tim for displaying html text within a wicket elementTim2009-11-27T23:32:35Z2009-11-27T23:32:35Z<p>Found this in the excellent Manning Wicket in Action:</p>
<pre><code>add(new Label("markup", "<h1>Hello!</h1>").setEscapeModelStrings(false));
</code></pre>
<blockquote>
<p>The call to setEscapeModelStrings tells Wicket not to escape the contents of the provided string, and to render the contents into the resulting markup. This does the trick, as you can see in the right screenshot in figure 5.4. Note that this setting is available on all Wicket components, but it’s primarily useful on labels.</p>
</blockquote>
<p>As the book also notes however, you should be aware of script-injection attacks..</p>
http://stackoverflow.com/questions/1659968/hibernate-foreign-key-mapping/1659988#16599881Answer by Tim for Hibernate foreign key mapping?Tim2009-11-02T08:13:19Z2009-11-02T08:27:53Z<blockquote>
<ul>
<li><p>@<strong>LazyCollection</strong>: defines the lazyness option on @ManyToMany
and @OneToMany associations.
LazyCollectionOption can be TRUE
(the collection is lazy and will be
loaded when its state is accessed),
EXTRA (the collection is lazy
and all operations will try to
avoid the collection loading, this
is especially useful for huge
collections when loading all the
elements is not necessary) and FALSE
(association not lazy)</p></li>
<li><p>@<strong>Fetch</strong>: defines the fetching strategy used to load the
association. FetchMode can be SELECT
(a select is triggered when the
association needs to be loaded),
SUBSELECT (only available for
collections, use a subselect
strategy - please refer to the
Hibernate Reference Documentation for
more information) or JOIN (use a
SQL JOIN to load the association
while loading the owner entity). JOIN
overrides any lazy attribute (an as
sociation loaded through a JOIN
strategy cannot be lazy).</p></li>
</ul>
</blockquote>
http://stackoverflow.com/questions/1579583/what-is-the-purpose-of-using-a-distinct-class-for-each-tab-in-wicket/1579601#15796011Answer by Tim for What is the purpose of using a distinct class for each tab in Wicket?Tim2009-10-16T18:22:21Z2009-10-23T14:57:36Z<p>If you'd use three instances of the same class, you'd end up with the same content on each tab... Not very usefull is it?</p>
http://stackoverflow.com/questions/1600440/java-coding-best-practices-for-reusing-part-of-a-query-to-count/1600943#16009432Answer by Tim for Java coding best-practices for reusing part of a query to countTim2009-10-21T13:47:18Z2009-10-21T13:47:18Z<p>Have you tried making your intentions clear to Hibernate by setting a projection on your (SQL?)Criteria?
I've mostly been using Criteria, so I'm not sure how applicable this is to your case, but I've been using</p>
<pre><code>getSession().createCriteria(persistentClass).
setProjection(Projections.rowCount()).uniqueResult()
</code></pre>
<p>and letting Hibernate figure out the caching / reusing / smart stuff by itself.. Not really sure how much smart stuff it actually does though.. Anyone care to comment on this?</p>
http://stackoverflow.com/questions/1594400/xml-data-is-sorted/1594424#15944244Answer by Tim for XML Data is sortedTim2009-10-20T12:57:22Z2009-10-20T12:57:22Z<p>Duplicate: <a href="http://stackoverflow.com/questions/726395/order-of-xml-attributes-after-dom-processing">http://stackoverflow.com/questions/726395/order-of-xml-attributes-after-dom-processing</a></p>
<p>From <a href="http://stackoverflow.com/questions/726395/order-of-xml-attributes-after-dom-processing/726933#726933">the accepted answer</a>:</p>
<blockquote>
<p>Look at section 3.1 of the XML
recommendation. It says, "Note that
the order of attribute specifications
in a start-tag or empty-element tag is
not significant."</p>
<p>If a piece of software requires
attributes on an XML element to appear
in a specific order, that software is
not processing XML, it's processing
text that looks superficially like
XML. It needs to be fixed.</p>
<p>If it can't be fixed, and you have to
produce files that conform to its
requirements, you can't reliably use
standard XML tools to produce those
files.</p>
</blockquote>
<p>Credit to <a href="http://stackoverflow.com/users/19403/robert-rossney">Robert Rossney</a></p>
http://stackoverflow.com/questions/1564138/how-to-mapping-foreign-key-as-just-id-a-long-rather-than-the-entity-with-hibern/1569195#15691950Answer by Tim for How to mapping foreign key as just ID (a long) rather than the entity with Hibernate annotations.Tim2009-10-14T21:45:55Z2009-10-14T22:26:35Z<p>From your post it's not eaxctly clear what you want, so I'm going with what I think it is you want...</p>
<pre><code>@Entity
class A {
@Id
long id;
@OneTo???
B bId;
}
@Entity
class B {
@Id
long bId;
...
}
</code></pre>
<p>You will need to specify the relationship between A and B and annotate the link as such. Hibernate will than link the two by generating a FK link to B's indentifier. Your tables will look something like this:</p>
<pre><code> |---------|
| A | |---------|
|---------| | B |
PK|long id | |---------|
FK|long bId | --> PK|long bId |
|---------| |---------|
</code></pre>
<p>You could look into annotating bId with One-to-One, or One-to-Many or any of the other mappings, depending on what's applicable in you case.</p>
http://stackoverflow.com/questions/1463623/can-i-update-the-html-files-using-wicket-and-eclipse-without-recompiling-the-clas/1569056#15690560Answer by Tim for Can I update the HTML files using Wicket and Eclipse without recompiling the classes?Tim2009-10-14T21:16:28Z2009-10-14T21:16:28Z<p>I understand you're using (and might want to keep using) Tomcat, but during Wicket development you can run the supplied Jetty server onder /src/test/java/com/your/package/Start.java in debug mode to get this behaviour.. Set Wicket to development mode to use this feature. </p>
http://stackoverflow.com/questions/1164363/page-expiration-in-javawicket/1569045#15690451Answer by Tim for Page Expiration in Java(Wicket)Tim2009-10-14T21:15:20Z2009-10-14T21:15:20Z<p>In trying to close this question, which the OP seems to have pretty much abandoned, I'll just post my old comment as an answer..:</p>
<p>In your CategoriesXML I would highly advise against building and adding your tags as Strings and adding them to pages just like that. See if you can work this into a in your .xml(?) file instead, as that's the Wicket way to do things (and as such just might solve the problems you're having) </p>
http://stackoverflow.com/questions/1512510/wicket-dynamic-image-url/1513855#15138550Answer by Tim for Wicket Dynamic Image URLTim2009-10-03T14:21:12Z2009-10-03T14:21:12Z<p>Here's my example that does the same for a dynamically compiled list of identifiers, served up as a shared resource with a static URL..</p>
<pre><code>public class WicketApplication extends WebApplication {
...snip...
@Override
protected void init() {
//Spring
addComponentInstantiationListener(new SpringComponentInjector(this));
//Register export lists as shared resources
getSharedResources().putClassAlias(ListInitializer.class, "list");
new ListInitializer().init(this);
}
</code></pre>
<p>And my ListInitializer that registers the resources as DBNAME_SUBSELECTION1(2/3/..)</p>
<pre><code>public class ListInitializer implements IInitializer {
public ListInitializer() {
InjectorHolder.getInjector().inject(this);
}
@SpringBean
private DatabankDAO dbdao;
@Override
public void init(Application application) {
//For each databank
for (Databank db : dbdao.getAll()) {
String dbname = db.getName();
//and all collection types
for (CollectionType ct : CollectionType.values()) {
//create a resource
Resource resource = getResource(dbname, ct);
//and register it with shared resources
application.getSharedResources().add(this.getClass(), dbname + '_' + ct, null, null, resource);
}
}
}
@SpringBean
private MyApp MyApp;
public Resource getResource(final String db, final CollectionType collectionType) {
return new WebResource() {
@Override
public IResourceStream getResourceStream() {
List<String> entries = MyApp.getEntries(db, collectionType.toString());
StringBuilder sb = new StringBuilder();
for (String entry : entries) {
sb.append(entry.toString());
sb.append('\n');
}
return new StringResourceStream(sb, "text/plain");
}
@Override
protected void setHeaders(WebResponse response) {
super.setHeaders(response);
response.setAttachmentHeader(db + '_' + collectionType);
}
}.setCacheable(false);
}
}
</code></pre>
<p>I'm sorry but I can't seem to find the tutorial I used to set this up anymore, but it should be evident how this relates to the above example and can be adjusted to do the same for images.. (Sorry for the sparse explanation, if it's still unclear I could come back and edit my answer)</p>
http://stackoverflow.com/questions/1494738/catching-webservice-exception-with-cxf-noclassdeffounderror-soapfaultbuilder0Catching webservice exception with CXF: NoClassDefFoundError: SOAPFaultBuilderTim2009-09-29T20:26:08Z2009-09-30T18:23:23Z
<p>Hey all,</p>
<p>I've been using Apache CXF wsdl2java generated code to call methods from a webservice for some time now, which so far has been working fine.. The problem I'm having is that when the webservice (implemented just down the hall from me) legitimately throws a soap exception, CXF comes up with the following Error message:</p>
<blockquote>
<p>Could not initialize class com.sun.xml.internal.ws.fault.SOAPFaultBuilder</p>
</blockquote>
<p>I'm using Ubuntu 9.04, OpenJDK (IcedTea6 1.4.1) 6b14-1.1.1-0ubuntu11, Maven2 and CXF 2.2.3. I'm currently at a loss about how to resolve this problem, as the code and setup I'm using seems trivially simple.. Anyone able to point me in the right direction here? Let me know if I can post any further details..</p>
<p>This is the full stacktrace returned:</p>
<pre><code>java.lang.NoClassDefFoundError: Could not initialize class com.sun.xml.internal.ws.fault.SOAPFaultBuilder
at com.sun.xml.internal.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:107)
at com.sun.xml.internal.ws.client.sei.SyncMethodHandler.invoke(SyncMethodHandler.java:78)
at com.sun.xml.internal.ws.client.sei.SEIStub.invoke(SEIStub.java:107)
at $Proxy36.downloadPDB(Unknown Source)
at path.to.my.code.downloadInvalidFileID(SingleMethodTest.java:64)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:616)
at org.junit.internal.runners.TestMethod.invoke(TestMethod.java:59)
at org.junit.internal.runners.MethodRoadie.runTestMethod(MethodRoadie.java:98)
at org.junit.internal.runners.MethodRoadie$2.run(MethodRoadie.java:79)
at org.junit.internal.runners.MethodRoadie.runBeforesThenTestThenAfters(MethodRoadie.java:87)
at org.junit.internal.runners.MethodRoadie.runTest(MethodRoadie.java:77)
at org.junit.internal.runners.MethodRoadie.run(MethodRoadie.java:42)
at org.junit.internal.runners.JUnit4ClassRunner.invokeTestMethod(JUnit4ClassRunner.java:88)
at org.junit.internal.runners.JUnit4ClassRunner.runMethods(JUnit4ClassRunner.java:51)
at org.junit.internal.runners.JUnit4ClassRunner$1.run(JUnit4ClassRunner.java:44)
at org.junit.internal.runners.ClassRoadie.runUnprotected(ClassRoadie.java:27)
at org.junit.internal.runners.ClassRoadie.runProtected(ClassRoadie.java:37)
at org.junit.internal.runners.JUnit4ClassRunner.run(JUnit4ClassRunner.java:42)
at org.apache.maven.surefire.junit4.JUnit4TestSet.execute(JUnit4TestSet.java:62)
at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.executeTestSet(AbstractDirectoryTestSuite.java:140)
at org.apache.maven.surefire.suite.AbstractDirectoryTestSuite.execute(AbstractDirectoryTestSuite.java:127)
at org.apache.maven.surefire.Surefire.run(Surefire.java:177)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:616)
at org.apache.maven.surefire.booter.SurefireBooter.runSuitesInProcess(SurefireBooter.java:338)
at org.apache.maven.surefire.booter.SurefireBooter.main(SurefireBooter.java:997)
</code></pre>
http://stackoverflow.com/questions/1082555/best-java-7-features/1492464#14924641Answer by Tim for Best Java 7 featuresTim2009-09-29T13:15:27Z2009-09-29T13:15:27Z<p>No one's mentioned <a href="http://jcp.org/aboutJava/communityprocess/final/jsr166/index.html" rel="nofollow">fork-join</a> yet? See this <a href="http://www.ibm.com/developerworks/java/library/j-jtp11137.html" rel="nofollow">for details..</a></p>
http://stackoverflow.com/questions/1411463/in-java-should-variables-be-declared-at-the-top-of-a-function-or-as-theyre-nee/1411518#14115186Answer by Tim for In Java, should variables be declared at the top of a function, or as they're needed?Tim2009-09-11T15:10:21Z2009-09-11T15:10:21Z<p>From the <a href="http://java.sun.com/docs/codeconv/html/CodeConvTOC.doc.html" rel="nofollow">Java Code Conventions</a>, <a href="http://java.sun.com/docs/codeconv/html/CodeConventions.doc5.html#18761" rel="nofollow">Chapter 6 on Declarations</a>:</p>
<blockquote>
<p>6.3 Placement</p>
<p>Put declarations only at the beginning
of blocks. (A block is any code
surrounded by curly braces "{" and
"}".) Don't wait to declare variables
until their first use; it can confuse
the unwary programmer and hamper code
portability within the scope.</p>
<pre><code>void myMethod() {
int int1 = 0; // beginning of method block
if (condition) {
int int2 = 0; // beginning of "if" block
...
}
}
</code></pre>
<p>The one exception to the rule is
indexes of for loops, which in Java
can be declared in the for statement:</p>
<pre><code>for (int i = 0; i < maxLoops; i++) { ... }
</code></pre>
<p>Avoid local declarations that hide
declarations at higher levels. For
example, do not declare the same
variable name in an inner block:</p>
<pre><code>int count;
...
myMethod() {
if (condition) {
int count = 0; // AVOID!
...
}
...
}
</code></pre>
</blockquote>
http://stackoverflow.com/questions/1407747/recomended-solution-for-splitting-up-maven-projects/1411483#14114832Answer by Tim for Recomended solution for splitting up Maven projects?Tim2009-09-11T15:06:51Z2009-09-11T15:06:51Z<p>I've been happily using the <a href="http://www.sonatype.com/books/maven-book/reference/multimodule-web-spring.html" rel="nofollow">Multi-module Enterprise Project</a> layout from <a href="http://www.sonatype.com/books/maven-book/reference/" rel="nofollow">Maven: The Definitive Guide</a>. Read it through for inspiration and work it into what works for you..
<img src="http://www.sonatype.com/books/maven-book/reference/figs/web/multimodule-web-spring%5Fprojects.png" alt="alt text" /></p>
http://stackoverflow.com/questions/1410741/want-to-invoke-a-linux-shell-command-from-java/1410779#14107791Answer by Tim for Want to invoke a linux shell command from JavaTim2009-09-11T13:12:16Z2009-09-11T13:12:16Z<p>Use ProcessBuilder to separate commands and arguments instead of spaces. This should work regardless of shell used:</p>
<pre><code> //Build command
List<String> commands = new ArrayList<String>();
commands.add("/bin/cat");
//Add arguments
commands.add("/home/narek/pk.txt");
log.debug("{}", commands);
//Run macro on target
ProcessBuilder pb = new ProcessBuilder(commands);
pb.directory(directory);
pb.redirectErrorStream(true);
Process process = pb.start();
//Read output
StringBuilder out = new StringBuilder();
BufferedReader br = new BufferedReader(new InputStreamReader(process.getInputStream()));
String line = null, previous = null;
while ((line = br.readLine()) != null)
if (!line.equals(previous)) {
previous = line;
out.append(line).append('\n');
log.debug(line);
}
//Check result
if (process.waitFor() == 0)
return 0;
//Abnormal termination: Log command parameters and output and throw ExecutionException
log.error("{}", commands);
log.error("\n{}", out.toString());
throw new ExecutionException(new IllegalStateException("Yasara macro exit code 1"));
</code></pre>
http://stackoverflow.com/questions/1337458/does-wicket-hamper-seo-or-search-engines-ability-to-crawl/1337629#13376292Answer by Tim for Does Wicket hamper SEO or search engines ability to crawl?Tim2009-08-26T21:34:44Z2009-08-26T21:34:44Z<p>Look into Wicket's Bookmarkable page links and UrlCodingStrategies for a very powerful combination to use in SEO. Basicly all your links and parameters can be encoded as/a/static/url, regardless of (changing) implementation on the backend.</p>
http://stackoverflow.com/questions/1300502/clustering-using-threads-in-java/1300621#13006211Answer by Tim for Clustering using Threads in JavaTim2009-08-19T15:16:26Z2009-08-19T15:16:26Z<p>Not sure in what state of development your project currently is, since your problem statement is quite limited, but you might want to consider getting having a look at the fork-join project coming in JDK7: <a href="http://www.ibm.com/developerworks/java/library/j-jtp11137.html" rel="nofollow">http://www.ibm.com/developerworks/java/library/j-jtp11137.html</a></p>
<p>There's a lot to gain & learn from looking at that, and since it's all open source you can already download the code as a patch and have a go at working with it.</p>
<p>(Might not be applicable for anything you have to implement <em>right now</em>, but worth a look non the less if you intend to develop / maintain your application for some time in the future)</p>
http://stackoverflow.com/questions/1284252/restful-web-service-in-java/1284272#12842721Answer by Tim for Restful web service in javaTim2009-08-16T13:18:16Z2009-08-16T13:18:16Z<p>You could try looking into using a framework like <a href="http://cxf.apache.org/docs/restful-services.html" rel="nofollow">CXF</a>, but from your question it isn't clear what kind problems you're running into.. Care to explain what you've tried already and what kind of service you're trying to build? Detailed questions get better answers..</p>
http://stackoverflow.com/questions/1220975/calling-a-function-every-10-minutes/1278430#12784301Answer by Tim for Calling a function every 10 minutes Tim2009-08-14T15:09:09Z2009-08-14T15:09:09Z<p>Have a look at the <a href="http://java.sun.com/javase/6/docs/api/java/util/concurrent/ScheduledExecutorService.html" rel="nofollow">ScheduledExecutorService</a>:</p>
<p>Here is a class with a method that sets up a ScheduledExecutorService to beep every ten seconds for an hour:</p>
<pre><code> import static java.util.concurrent.TimeUnit.*;
class BeeperControl {
private final ScheduledExecutorService scheduler =
Executors.newScheduledThreadPool(1);
public void beepForAnHour() {
final Runnable beeper = new Runnable() {
public void run() { System.out.println("beep"); }
};
final ScheduledFuture<?> beeperHandle =
scheduler.scheduleAtFixedRate(beeper, 10, 10, SECONDS);
scheduler.schedule(new Runnable() {
public void run() { beeperHandle.cancel(true); }
}, 60 * 60, SECONDS);
}
}
</code></pre>
http://stackoverflow.com/questions/1266933/write-problem-lossing-the-original-data/1266966#12669660Answer by Tim for Write problem - lossing the original dataTim2009-08-12T15:35:57Z2009-08-12T15:35:57Z<p>We're you've got: <code>new Formatter(myFile);</code> you'll want to use <code>new Formatter(new FileWriter(myfile, true)</code>. The true indicates you want to append to that file.</p>
http://stackoverflow.com/questions/1212058/how-to-make-a-composite-primary-key-java-persistence-annotation/1241754#12417542Answer by Tim for how to make a composite primary key (java persistence annotation)Tim2009-08-06T21:56:42Z2009-08-09T21:29:22Z<p>You've already had a few good answers here on how to do exactly as you ask..</p>
<p>For reference let me just mention the recommended way to do this in Hibernate instead, which is to use a surrogate key as primary key, and to mark business keys as NaturalId's:</p>
<blockquote>
<p>Although we recommend the use of
surrogate keys as primary keys, you
should try to identify natural keys
for all entities. A natural key is a
property or combination of properties
that is unique and non-null. It is
also immutable. Map the properties of
the natural key inside the
element. Hibernate will
generate the necessary unique key and
nullability constraints and, as a
result, your mapping will be more
self-documenting.</p>
<p>It is recommended that you implement
equals() and hashCode() to compare the
natural key properties of the entity.</p>
</blockquote>
<p>In code, using annotations, this would look something like this:</p>
<pre><code>@Entity
public class UserRole {
@Id
@GeneratedValue
private long id;
@NaturalId
private User user;
@NaturalId
private Role role;
}
</code></pre>
<p>Using this will save you a lot of headaches down the road, as you'll find out when you frequently have to reference / map the composed primary key.</p>
<p>I found this out the hard way, and in the end just gave up fighting against Hibernate and instead decided to go with the flow. I fully understand that this might not be possible in your case, as you might be dealing with legacy software or dependencies, but I just wanted to mention it for future reference. (<em>if you can't use it maybe someone else can</em>!)</p>
http://stackoverflow.com/questions/1239150/looking-for-an-easier-way-to-write-debugging-print-statements-in-java/1239168#12391683Answer by Tim for Looking for an easier way to write debugging print statements in JavaTim2009-08-06T14:16:17Z2009-08-06T14:16:17Z<p>Have a look at <a href="http://slf4j.org" rel="nofollow">Simple Logging Framework</a>, it allows you to type:</p>
<pre><code>Object obj1, obj2;
log.debug("This is object 1: {}, and this is object 2: {}", obj1, obj2);
</code></pre>
http://stackoverflow.com/questions/1235742/java-threading-question-listening-to-n-error-streams/1235817#12358170Answer by Tim for Java threading question - listening to n error streamsTim2009-08-05T21:19:19Z2009-08-05T21:27:31Z<p>Instead of using Runtime.getRuntime().exec(), use <a href="http://java.sun.com/javase/6/docs/api/java/lang/Process.html" rel="nofollow">Process</a> to start external processes.. It'll make your life a whole lot easier..</p>
<p>Example code from a project of mine:</p>
<pre><code> //Build command
List<String> commands = new ArrayList<String>();
commands.add("my_application");
commands.add("arg1");
commands.add("arg2");
log.debug("{}", commands);
//Run command with arguments
ProcessBuilder pb = new ProcessBuilder(commands);
pb.directory(directory);
pb.redirectErrorStream(true);
Process process = pb.start();
//Read output
StringBuilder out = new StringBuilder();
BufferedReader br = new BufferedReader(new InputStreamReader
(process.getInputStream()));
//Only log unique lines (you might not need this)
String line = null, previous = null;
while ((line = br.readLine()) != null)
if (!line.equals(previous)) {
previous = line;
out.append(line).append('\n');
log.debug(line);
}
//Check result
if (process.waitFor() == 0)
return 0;
//Abnormal termination: Log command parameters and output and throw ExecutionException
log.error("{}", commands);
log.error("\n{}", out.toString());
throw new ExecutionException(new IllegalStateException("MyApplication exit code 1"));
</code></pre>
http://stackoverflow.com/questions/1228433/java-parallel-work-iterator/1228445#12284458Answer by Tim for Java parallel work iterator?Tim2009-08-04T16:12:42Z2009-08-04T16:22:48Z<p>Have a look at the <a href="http://java.sun.com/javase/6/docs/api/java/util/concurrent/ExecutorCompletionService.html" rel="nofollow">ExecutorCompletionService</a>. It does everything you want.</p>
<pre><code> void solve(Executor e, Collection<Callable<Result>> solvers)
throws InterruptedException, ExecutionException {
//This class will hold and execute your tasks
CompletionService<Result> ecs
= new ExecutorCompletionService<Result>(e);
//Submit (start) all the tasks asynchronously
for (Callable<Result> s : solvers)
ecs.submit(s);
//Retrieve completed task results and use them
int n = solvers.size();
for (int i = 0; i < n; ++i) {
Result r = ecs.take().get();
if (r != null)
use(r);
}
}
</code></pre>
<p>The benefit of using a CompletionService is that it always returns the first completed result. This ensures you're not waiting for tasks to complete and it lets the uncompleted tasks run in the background.</p>
http://stackoverflow.com/questions/1225058/java-sudoku-gui/1225075#12250751Answer by Tim for Java Sudoku GuiTim2009-08-03T23:13:06Z2009-08-03T23:13:06Z<p>Struggled a bit with this for my own sudoku solver, but ended up going for painting on a JPanel, and adding a mouse listener to that.. Than determine the current field using mouse position with his function:</p>
<pre><code> addMouseListener(new MouseAdapter() {
private int t(int z) {
return Math.min(z / factor, 8);
};
@Override
public void mouseMoved(MouseEvent e) {
setToolTipPossibilities(t(e.getX()), t(e.getY()));
}
@Override
public void mousePressed(MouseEvent e) {
clickColumn = t(e.getX());
clickRow = t(e.getY());
}
});
</code></pre>
http://stackoverflow.com/questions/1201726/tracking-down-cause-of-springs-not-eligible-for-auto-proxying/1218545#12185451Answer by Tim for Tracking down cause of Spring's "not eligible for auto-proxying"Tim2009-08-02T09:46:44Z2009-08-02T09:46:44Z<p>Not sure if it's of any help, but the Eclipse <a href="http://springide.org" rel="nofollow">Spring IDE</a>'s
<a href="http://springide.org/project/wiki/BeansGraph" rel="nofollow">graph view</a> looks like it could be helpful in sorting out bean references..</p>
http://stackoverflow.com/questions/1216213/javascript-injection-in-wicket/1217867#12178671Answer by Tim for javascript injection in wicketTim2009-08-02T00:34:07Z2009-08-02T00:34:07Z<p>Although I didn't think the way in which you formulated your question deserved it (no details, no background, no example problem statement, implied susceptability to injection, etc), I dug up some details from the Excellent <a href="http://www.manning.com/dashorst/" rel="nofollow">Wicket in Action</a>:</p>
<p><strong>Wicket is secure by default</strong></p>
<blockquote>
<p>You never need to worry about
pimple-faced 14-year-olds trying to
hack your web application. To do so,
they would have to hijack the session
and then guess the right page
identifiers and version numbers, which
would be relative to the session and
the relevant component paths. You’d
have to be a persistent hacker to pull
that off. You can make your Wicket
application even more secure from the
default by encrypting requests with,
for instance,
CryptedUrlWebRequestCodingStrategy.</p>
</blockquote>
http://stackoverflow.com/questions/1802975/unit-testing-modalwindows-content-refresh-fails-while-the-actual-functionality-w/1811015#1811015Comment by Tim on Unit testing ModalWindow's content refresh fails while the actual functionality works as expected - what am I doing wrong?Tim2009-12-04T08:21:41Z2009-12-04T08:21:41ZHmm, just to eliminate any variables, have you tried UnitTesting the unaltered ModalWindow?http://stackoverflow.com/questions/1819956/framework-to-expose-a-web-service-as-a-website/1826983#1826983Comment by Tim on Framework to expose a web service as a websiteTim2009-12-01T16:18:57Z2009-12-01T16:18:57ZWith web site I mean generate a web site with input fields for the user to interact with the WSDL, and see the results on a web page. Starting to get further and further with Enunciate, and it seems to fit the requirements pretty nicely.
Thanks for mentioning Metro, I'll look into that as well..http://stackoverflow.com/questions/1819956/framework-to-expose-a-web-service-as-a-website/1826266#1826266Comment by Tim on Framework to expose a web service as a websiteTim2009-12-01T14:51:10Z2009-12-01T14:51:10ZThanks for replying here.. I'm going to try a bit harder again, this time using Ant instead of Maven. Turns out the maven archetype returns a different codebase from the enunciate download package, so I'm trying again with that aswell.. (So far I've been able to compile, will let you know what comes up next..)http://stackoverflow.com/questions/1804220/displaying-html-text-within-a-wicket-element/1811000#1811000Comment by Tim on displaying html text within a wicket elementTim2009-11-30T13:13:51Z2009-11-30T13:13:51ZThe book recommends a similar approach in filtering out any scripting before storing / displaying the input.. Other than that I can't recommend anything unfortunately..http://stackoverflow.com/questions/1815413/hibernate-aliasesComment by Tim on Hibernate, aliasesTim2009-11-29T12:41:03Z2009-11-29T12:41:03ZWhy? The whole point of using Hibernate is to have it manage your ORM mapping.. Worrying about the aliases used without any explanation looks a little OCD.. ;)http://stackoverflow.com/questions/1807596/preventing-nan-from-being-persisted-by-hibernateComment by Tim on Preventing NaN from being persisted by HibernateTim2009-11-28T11:36:26Z2009-11-28T11:36:26ZHave you looked into using Hibernate Validator's @NotNull annotation? (This might not be an option if you only want pure JPA)http://stackoverflow.com/questions/1802975/unit-testing-modalwindows-content-refresh-fails-while-the-actual-functionality-w/1811015#1811015Comment by Tim on Unit testing ModalWindow's content refresh fails while the actual functionality works as expected - what am I doing wrong?Tim2009-11-28T11:19:31Z2009-11-28T11:19:31ZAh ok, sorry I missed that.. Have you tried going around the test setup by keeping your modalwindowpanel as it is, and adding it to a <code>MyTestPage extends WebPage</code>? The WicketTester().startPanel does not seem to work from what you're telling me/us..http://stackoverflow.com/questions/1810954/java-is-there-an-inbuilt-function-for-concatenating-the-strings-in-a-string/1810965#1810965Comment by Tim on Java - is there an Inbuilt function for concatenating the Strings in a String[]?Tim2009-11-27T23:47:41Z2009-11-27T23:47:41ZI'm all for the Apache solution, and as such it's a valuable contribution, but it's not what was asked.. it might be overkill to include a dependency for four lines of code..http://stackoverflow.com/questions/1792310/problematic-wicket-runtimeexception/1792450#1792450Comment by Tim on Problematic Wicket RuntimeExceptionTim2009-11-27T23:42:02Z2009-11-27T23:42:02ZYup.. You were getting the "no get method defined" problem because it was assuming a ComponentPropertyModel (iirc) and was trying to read it's models from there, finding no get method for "DocumentUpload".. You can accept your own answer as an answer..http://stackoverflow.com/questions/1810954/java-is-there-an-inbuilt-function-for-concatenating-the-strings-in-a-string/1810965#1810965Comment by Tim on Java - is there an Inbuilt function for concatenating the Strings in a String[]?Tim2009-11-27T23:24:12Z2009-11-27T23:24:12ZOP is specifically asking for an "inbuilt function" [sic]http://stackoverflow.com/questions/1770076/log4j-strategies-for-creating-logger-instances/1793697#1793697Comment by Tim on Log4J: Strategies for creating Logger instancesTim2009-11-24T23:38:35Z2009-11-24T23:38:35Z+1 For mentioning SLF4Jhttp://stackoverflow.com/questions/1714029/howto-automate-documentation-of-a-rest-api-jersey-implementationComment by Tim on Howto automate documentation of a REST API (Jersey Implementation)Tim2009-11-11T09:28:40Z2009-11-11T09:28:40ZEnunciate.codehaus.org pulls the documentation from the Javadocs: it's open source and works with Jersey, so maybe you could look into that?http://stackoverflow.com/questions/1692790/algorithm-to-sort/1692816#1692816Comment by Tim on Algorithm to sortTim2009-11-07T12:27:35Z2009-11-07T12:27:35ZC# != Java: Java does not have the Linq operators used above..http://stackoverflow.com/questions/1681453/child-not-finding-parent-pom-in-flat-structured-multi-module-maven-buildComment by Tim on Child not finding parent pom in flat structured multi module maven build. Tim2009-11-06T10:34:53Z2009-11-06T10:34:53ZParent uses version <code>1-0</code>, whereas the the child refers to <code>1.0</code>.. (notice the difference between the dash and the dot) Or is this another typo?http://stackoverflow.com/questions/1579583/what-is-the-purpose-of-using-a-distinct-class-for-each-tab-in-wicket/1579601#1579601Comment by Tim on What is the purpose of using a distinct class for each tab in Wicket?Tim2009-10-23T15:00:31Z2009-10-23T15:00:31ZAh no problem, it's nice to see you came back to mention this.. And granted, my answer wasn't the most detailed one.. msparer does a better job of explaining the issue to someone new to Wicket..