User Johannes Brodwall - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T09:52:18Zhttp://stackoverflow.com/feeds/user/27658http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1189832/hide-a-file-or-directory-using-the-windows-api-from-c0Hide a file or directory using the Windows API from CJohannes Brodwall2009-07-27T18:33:39Z2009-07-27T18:43:17Z
<p>I want to modify a C program to make some of the files it creates hidden in Windows. What Windows or (even better) POSIX API will set the hidden file attribute?</p>
http://stackoverflow.com/questions/1132567/encrypt-password-in-configuration-files-java/1133815#11338152Answer by Johannes Brodwall for Encrypt Password in Configuration Files? (Java)Johannes Brodwall2009-07-15T20:28:51Z2009-07-15T22:16:37Z<p>A simple way of doing this is to use Password Based Encryption in Java. This allows you to encrypt and decrypt a text by using a password.</p>
<p>This basically means initialing a javax.crypto.Cipher with algorithm "PBEWithMD5AndDES" and getting a key from javax.crypto.SecretKeyFactory with the same algorithm.</p>
<p>Here is a code example:</p>
<pre><code>import java.io.IOException;
import java.security.GeneralSecurityException;
import javax.crypto.Cipher;
import javax.crypto.SecretKey;
import javax.crypto.SecretKeyFactory;
import javax.crypto.spec.PBEKeySpec;
import javax.crypto.spec.PBEParameterSpec;
import sun.misc.BASE64Decoder;
import sun.misc.BASE64Encoder;
public class ProtectedConfigFile {
private static final char[] PASSWORD = "enfldsgbnlsngdlksdsgm".toCharArray();
private static final byte[] SALT = {
(byte) 0xde, (byte) 0x33, (byte) 0x10, (byte) 0x12,
(byte) 0xde, (byte) 0x33, (byte) 0x10, (byte) 0x12,
};
public static void main(String[] args) throws Exception {
String originalPassword = "secret";
System.out.println("Original password: " + originalPassword);
String encryptedPassword = encrypt(originalPassword);
System.out.println("Encrypted password: " + encryptedPassword);
String decryptedPassword = decrypt(encryptedPassword);
System.out.println("Decrypted password: " + decryptedPassword);
}
private static String encrypt(String property) throws GeneralSecurityException {
SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("PBEWithMD5AndDES");
SecretKey key = keyFactory.generateSecret(new PBEKeySpec(PASSWORD));
Cipher pbeCipher = Cipher.getInstance("PBEWithMD5AndDES");
pbeCipher.init(Cipher.ENCRYPT_MODE, key, new PBEParameterSpec(SALT, 20));
return base64Encode(pbeCipher.doFinal(property.getBytes()));
}
private static String base64Encode(byte[] bytes) {
// NB: This class is internal, and you probably should use another impl
return new BASE64Encoder().encode(bytes);
}
private static String decrypt(String property) throws GeneralSecurityException, IOException {
SecretKeyFactory keyFactory = SecretKeyFactory.getInstance("PBEWithMD5AndDES");
SecretKey key = keyFactory.generateSecret(new PBEKeySpec(PASSWORD));
Cipher pbeCipher = Cipher.getInstance("PBEWithMD5AndDES");
pbeCipher.init(Cipher.DECRYPT_MODE, key, new PBEParameterSpec(SALT, 20));
return new String(pbeCipher.doFinal(base64Decode(property)));
}
private static byte[] base64Decode(String property) throws IOException {
// NB: This class is internal, and you probably should use another impl
return new BASE64Decoder().decodeBuffer(property);
}
}
</code></pre>
<p>One problem remains: Where should you store the password that you use to encrypt the passwords? You can store it in the source file and obfuscate it, but it's not too hard to find it again. Alternatively, you can give it as a system property when you start the Java process (-DpropertyProtectionPassword=...).</p>
<p>The same issue remains if you use the KeyStore, which also is protected by a password. Basically, you will need to have one master password somewhere, and it's pretty hard to protect.</p>
http://stackoverflow.com/questions/236183/how-do-i-put-preformatted-text-into-a-fitnesse-fixture-table-cell/587889#5878891Answer by Johannes Brodwall for How do I put preformatted text into a FitNesse fixture table cell?Johannes Brodwall2009-02-25T21:18:13Z2009-02-25T21:18:13Z<p>Use !- -! to get multiline table cells and {{{ }}} to get preformatted text. The {{{ has to be outside the !-</p>
<p>For example:</p>
<pre><code>|sql|
|{{{!- SELECT *
FROM bar
WHERE gaz = 14
-!}}}|
</code></pre>
http://stackoverflow.com/questions/284774/can-we-use-junit-for-automated-integration-testing/285284#2852849Answer by Johannes Brodwall for Can we use JUNIT for Automated Integration Testing?Johannes Brodwall2008-11-12T20:42:46Z2008-11-12T20:42:46Z<p>I've used JUnit for doing a lot of integration testing. Integration testing can, of course, mean many different things. For more system level integration tests, I prefer to let scripts drive my testing process from outside.</p>
<p>Here's an approach that works well for me for applications that use http and databases and I want to verify the whole stack:</p>
<ol>
<li>Use Hypersonic or H2 in in-memory mode as a replacement for the database (this works best for ORMs)</li>
<li>Initialize the database in @BeforeSuite or equivalent (again: easiest with ORMs)</li>
<li>Use Jetty to start an in-process web server.</li>
<li>@Before each test, clear the database and initialize with the necessary data</li>
<li>Use JWebUnit to execute HTTP requests towards Jetty</li>
</ol>
<p>This gives you integration tests that can run without any setup of database or application server and that exercises the stack from http down. Since it has no dependencies on external resources, this test runs fine on the build server.</p>
<p>Here some of the code I use:</p>
<pre><code>@BeforeClass
public static void startServer() throws Exception {
System.setProperty("hibernate.hbm2ddl.auto", "create");
System.setProperty("hibernate.dialect", "...");
DriverManagerDataSource dataSource = new DriverManagerDataSource();
dataSource.setJdbcUrl("jdbc:hsqldb:mem:mytest");
new org.mortbay.jetty.plus.naming.Resource(
"jdbc/primaryDs", dataSource);
Server server = new Server(0);
WebAppContext webAppContext = new WebAppContext("src/main/webapp", "/");
server.addHandler(webAppContext);
server.start();
webServerPort = server.getConnectors()[0].getLocalPort();
}
@Before
public void createTestContext() {
tester.getTestContext().setBaseUrl("http://localhost:" + webServerPort + "/");
dao.deleteAll(dao.find(Product.class));
dao.flushChanges();
}
@Test
public void createNewProduct() throws Exception {
String productName = uniqueName("product");
int price = 54222;
tester.beginAt("/products/new.html");
tester.setTextField("productName", productName);
tester.setTextField("price", Integer.toString(price));
tester.submit("Create");
Collection<Product> products = dao.find(Product.class);
assertEquals(1, products.size());
Product product = products.iterator().next();
assertEquals(productName, product.getProductName());
assertEquals(price, product.getPrice());
}
</code></pre>
<p>For those who'd like to know more, I've written an articla <a href="http://today.java.net/pub/a/today/2007/04/12/embedded-integration-testing-of-web-applications.html" rel="nofollow">article about Embedded Integration Tests with Jetty and JWebUnit</a> on Java.net.</p>
http://stackoverflow.com/questions/27581/overriding-equals-and-hashcode-in-java/256447#2564479Answer by Johannes Brodwall for Overriding equals and hashCode in JavaJohannes Brodwall2008-11-02T02:58:13Z2008-11-02T02:58:13Z<p>There are some issues worth noticing if you're dealing with classes that are persisted using an Object-Relationship Mapper (ORM) like Hibernate. If you didn't think this was unreasonably complicated already!</p>
<p><strong>Lazy loaded objects are subclasses</strong></p>
<p>If your objects are persisted using an ORM, in many cases you will be dealing with dynamic proxies to avoid loading object too early from the data store. These proxies are implemented as subclasses of your own class. This means that<code>this.getClass() == o.getClass()</code> will return false. For example:</p>
<pre><code>Person saved = new Person("John Doe");
Long key = dao.save(saved);
dao.flush();
Person retrieved = dao.retrieve(key);
saved.getClass().equals(retrieved.getClass()); // Will return false if Person is loaded lazy
</code></pre>
<p><em>If you're dealing with an ORM using <code>o instanceof Person</code> is the only thing that will behave correctly.</em></p>
<p><strong>Lazy loaded objects have null-fields</strong></p>
<p>ORMs usually use the getters to force loading of lazy loaded objects. This means that <code>person.name</code> will be null if <code>person</code> is lazy loaded, even if <code>person.getName()</code> forces loading and returns "John Doe". In my experience, this crops up more often in <code>hashCode</code> and <code>equals</code>.</p>
<p><em>If you're dealing with an ORM, make sure to always use getters, and never field references in <code>hashCode</code> and <code>equals</code>.</em></p>
<p><strong>Saving an object will change it's state</strong></p>
<p>Persistent objects often use a <code>id</code> field to hold the key of the object. This field will be automatically updated when an object is first saved. Don't use an id field in <code>hashCode</code>. But you can use it in <code>equals</code>.</p>
<p>A pattern I often use is</p>
<pre><code>if (this.getId() == null) {
return this == other;
} else {
return this.getId() == other.getId();
}
</code></pre>
<p>But: You cannot include <code>getId()</code> in <code>hashCode()</code>. If you do, when an object is persisted, it's <code>hashCode</code> changes. If the object is in a <code>HashSet</code>, you'll "never" find it again.</p>
<p>In my <code>Person</code> example, I probably would use <code>getName()</code> for <code>hashCode</code> and <code>getId</code> plus <code>getName()</code> (just for paranoia) for <code>equals</code>. It's okay if there are some risk of "collisions" for <code>hashCode</code>, but never okay for <code>equals</code>.</p>
<p><em><code>hashCode</code> should use the non-changing subset of properties from <code>equals</code></em></p>
http://stackoverflow.com/questions/1103363/why-is-hibernate-open-session-in-view-considered-a-bad-practiceComment by Johannes Brodwall on Why is hibernate open session in view considered a bad practice?Johannes Brodwall2009-07-15T22:28:02Z2009-07-15T22:28:02ZIs OSIV considered a bad practice? By whom?http://stackoverflow.com/questions/1103363/why-is-hibernate-open-session-in-view-considered-a-bad-practice/1103371#1103371Comment by Johannes Brodwall on Why is hibernate open session in view considered a bad practice?Johannes Brodwall2009-07-15T22:27:29Z2009-07-15T22:27:29ZIt doesn't make sense to say that OSIV hurts Performance. What alternatives are there except for using DTOs? In that case, you will <i>always</i> have lower performance because data used by any view will have to be loaded even for views that don't need it.http://stackoverflow.com/questions/895121/hibernate-onetomany-list-ordering-persisting-but-reversing/1041138#1041138Comment by Johannes Brodwall on hibernate OneToMany List ordering persisting but reversing?!Johannes Brodwall2009-07-15T22:21:40Z2009-07-15T22:21:40ZGood answer. But you should format your code.http://stackoverflow.com/questions/236183/how-do-i-put-preformatted-text-into-a-fitnesse-fixture-table-cell/236207#236207Comment by Johannes Brodwall on How do I put preformatted text into a FitNesse fixture table cell?Johannes Brodwall2009-02-25T21:18:42Z2009-02-25T21:18:42ZThis will not make the text preformatted