Use java project in another project

1

I have a java web project (a framework type) and I want to use it in my main project (the application), but I do not want to generate a .jar. I want to use it right inside my project so that when I need to make some changes I do not have all compiled a .jar. I added the project in Properties > java build path > projects I can use the other project classes normally, but when I run the project in the browser I get the error:

java.lang.ClassNotFoundException: com.jmsys.client.component.botao.BotaoConfirmar

How can I do this?

    
asked by anonymous 06.07.2016 / 14:26

1 answer

1

I think compiling classes is missing. If you are using Eclipse go to the menu and select: Project > Clean . In the box that opens, select Clean projects selected below , check the projects you are working on and click OK . Then post the changes to the server. It should resolve.

    
06.07.2016 / 16:50