Posted tagged ‘jpa’

Links for 2010-07-20

20. Juli 2010

According to Entwickler.COM Microsoft has published a free ebook about „Cloud Computing“ by Bob Muglia.

On Wakaleo the development of an open source book about Hudson: „Continuous Integration with Hudson„. First chapters are online …

Golem.DE has found a free German video workshop about Gimp 2.6.

On DZone Hudson creator Kohsuke Kawaguchi introduced his new startup, InfraDNA, which provides support and consulting for the Hudson Continuous Integration system.

Again on DZone there is a nice introduction into HtmlUnit. It provides a Java based WebClient which you can control via its API. With this you could write JUnit tests. But more easily you could write them with the additional assert-Methods:

@Test
public void testGoogle(){
 WebClient webClient = new WebClient();
 HtmlPage currentPage = webClient.getPage("http://www.google.com/");
 assertEquals("Google", currentPage.getTitleText());
}
@Test public void htmlunitAsserts() {
 // Load a page
 webClient.getPage("http://www.google.com/search?q=htmlunit");

 // JUnit asserts and WebClient API
 assertEquals(200,currentPage.getWebResponse().getStatusCode());
 assertEquals("OK",currentPage.getWebResponse().getStatusMessage());

 // HtmlUnit asserts
 WebAssert.assertTextPresent(currentPage, "htmlunit");
 WebAssert.assertTitleContains(currentPage, "htmlunit");
 WebAssert.assertLinkPresentWithText(currentPage, "Advanced search");

 // XPath Query
 assertTrue(currentPage.getByXPath("//h3").size()>0); //result number

 // Cookies
 assertNotNull(webClient.getCookieManager().getCookie("NID"));
}

According to Entwickler.COM Microsoft has published a bunch of Powerpoint-Templates for demonstrating the new features of PPT 2010.

If you ask yourself what Darth Vader and Yoda are doing after making the movies with George Lucas, GolemDE has found the answer: they are creating TomToms next voices … 😉

If you are updating to Java 1.6_21 and having problems with Eclipse, have a look at this blog entry: it show how to tune the JVM settings …

Also if you write JPA applications you should have a good test suite. So looking at the blog „Patterns for Better Unit Testing with JPA“ is not waste of time 😉

Werbung

Links for 2009-05-06

6. Mai 2009

On Chip.DE I read an announcement of LicenseCrawler. It is a tool which scans your program for license information, so you could backup these more easily.

On CreateOrDie there is a list of 15 free available eBooks about web design.

Heise.DE provides a new podcast about software architecture. Havent listened to it yet, but could be in German.

According to Golem.DE Windows 7 comes with a built in VM for WindowsXP – a nice way for having BWC 😉

I read an interesting announcement on TSS.com: OpenXava generates GUIs from JPA entities if they are marked with a few annotations more.

I also found a list of free java decompilers.

SE-Radio episode 133 was about Continuous Integration. It was very interesting …

It seems that JBoss provides with Tattletale an interesting tool for analyzing jar dependencies – including their version.

For PHP developers: the Zend framework 1.8.0 is released.

According to Win7 and its virtual XP: there is also a nice blog (German) which shows the use of its via two parallel running Outlooks of different version.

The German part Northrhine Westfalia (NRW) provides a ring tone (not sure about this term, in German it is „Klingelton“): it is a pop version of Beethovens 9th symphony – the theme used as Europe theme. It is a ‚commercial‘ for the next election.

ZDNet.DE provides a link to a webcast by Microsoft: „10 Cool Things to Do With the Powershell“. The link is online. Content:
This webcast shows some of the neat things programmers can do with PowerShell with regards to server administration. There are 10 demos one can run through ranging from simple queries for services to enumerating information in Active Directory. Some of the scripts use lists of computers, some prompt for a computername. Each script shows a different thing programmers can do with PowerShell to quickly create administration scripts.

According to Entwickler.COM SpringSource and Google prepare a JSR for an annotation for DI.

Are you a .NET developer? Maybe this list of 10 open source tools is for you.