Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 2 years ago.
Improve this question
I'm using Jhipster for my web application, Spring Boot and angular.
I want to work with frontend freelance developer, For that I would like to deploy the frontend separately.
How can I do it?
Like Gaƫl Marziou mentioned, it isn't necessary to separate the frontend code from the backend code. Your app is generated with angular: you'll find the frontend code in src/main/webapp and you can edit the Angular-code of your jhipster generated application with any development tool.
You also can generate the frontend only with jhipster --skip-server as mentioned in https://www.jhipster.tech/creating-an-app/.
Related
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 3 years ago.
Improve this question
I am a fresh Spring Boot developer coming from a Django background. I like what i see so far but I've been searching for a way to auto-generate CRUD UI from my Entities similar to how Django admin does it out of the box. I'm not averse to solutions that require a little tinkering.
Spring Boot does not provide you that kind of feature but there are some additional tools that can easily do it for you - the most popular is jHipster
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I want to implement an angular 2 based app with a backend in Spring MVC. I was able to implement a basic web app using maven in eclipse on the Spring MVC. I know how the basic jsp system works. I now need to know how to integrate angular 2 into the project. I have a basic idea of angular 2 but am having some problems regarding how to deal with its dependencies in the spring mvc. Could you give me some directions?
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
If I have a Java web project on github, is it possible to create a github page from the source files? Something like this (How is posible add several javascript libraries to main html?).
You can't run your Java application on GitHub. For this purpose you need an application server, for example Tomcat, Glassfish, or Wildfly. Github gives you the opportunity to show only HTML pages with JavaScript.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
We have requirement to invoke webservice from Java. I tried with JAX-WS through netbeans, but it created war file. Problem with war file is that we require additional server for deployment.
Is there any other way in which we can create webservice client in Java and create jar file instead of war.
If you're creating a JAX-WS web service client in NetBeans you need to point it to a WSDL that describes the service. It sounds like you're accidentally creating a web service server...
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
Are there any Java EE frameworks that are similar to CodeIgniter for PHP?
I need to convert a PHP web app to Java for my company. (This is because they want to deploy the app on a Heroku Server) Currently, the application uses the CodeIgniter framework. This is my first Java EE project and I am in the process of learning JSF right now, but while I am doing that, I would like to know of possible frameworks that I should be looking at/ considering for this project.
Not sure abt Heroku deployment, but Spring is a very capable f/w in Java. For small to medium size apps, Play f/w is also a good option.