Hi,
I am using JBoss IDE for Eclipse ver. 2.0.0 and I am trying to find the properties file that gets created when an instance of jboss server is created in eclipse and the launch configuration properties gets set (such as Classpath, Start Args, etc.).
I assumed it would be under "eclipse_install_dir/Servers/server_name", however no file gets written under this directory.
Does anybody know if a properties file is actually written when the launch configuration is set for the server? If so, where does it get written to?
Thanks,
Mike
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4041195#4041195
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4041195
I think you mave have failed to instantiate an instance of Person inside EntityHome.
@Name("personHome")
| public class PersonHome extends EntityHome<Person> {
|
| private static final long serialVersionUID = 219059304048820709L;
|
| public void setPersonId(Long id)
| {
| setId(id);
| }
|
| public Long getPersonId()
| {
| return (Long) getId();
| }
|
| @Override
| protected Person createInstance()
| {
| Person person = new Person();
| return person;
| }
| }
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4041185#4041185
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4041185