Initial classes

This commit is contained in:
Grzegorz Piwowarek
2016-08-13 13:12:57 +02:00
parent 0d2137f19e
commit f755fce0bb
7 changed files with 85 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
package org.baeldung.startup;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.core.env.Environment;
import org.springframework.stereotype.Component;
@Component
public class PostConstructExampleBean {
@Autowired
private Environment environment;
public PostConstructExampleBean() {
}
}