Ask HN: How are you setting up your Java applications?
I do have a question how people in the rapid development segment (read: startups) architect your application?
Of course I will have a web interface, but I also feel that the web interface is just one interface, and as a whole its not a web application. I see a few options:
- Give into the web app frameworks and develop as war for deployment into a container (or turn it into an executable war)
- Embed Jetty or Tomcat and treat it as a module of my application. I feel this gives me more control over the web server component.
- Take on more overhead.. Develop one project which is the business logic. Then do a separate application that communicates to the back-end somehow.. ZeroMQ, or perhaps REST - but then I'm dealing with a web tier again. But maybe my web tier on my back end service can be simpler in this case.
Thanks for any thoughts.
11 comments
[ 3.1 ms ] story [ 26.4 ms ] threadIf you're planning to build the front-end with a lot of JS or Backbone-style interaction, you'll want an API anyway, so you might go with the last method of developing REST endpoints and just accessing them via JSON and Backbone. (This is the approach I'm taking on my most recently project, though Python is the backend, not Java).
Without knowing the scope of the project, whether there are customers, what kind of customers they are, etc., it's a little hard to make an informed decision, however one thing I didn't see was Play[1]. The last Java project I had was done in Play and I found it pretty easy to get up to speed on, and it's designed to act as a web framework. If you're looking for something new to learn, or an easy way to transition from systems development to web work, Play might be a fun transition for you.
[1] - http://www.playframework.org/
Scope is a service.. User interface for reporting and graphing, and an API for punting messages around (not instant messages or anything like that). And a database. And servers in the backend will need to talk to other peer servers in another data center.
Thanks for your input.
- database: PostgreSQL
- API server: JEE6 app (EJB, JPA, JAX-RS, Jackson, Jasypt)
- Web server: JEE6 app (JSF, Primefaces, PrettyFaces, Jackson, commons-http)
All packaged with maven, and deployed on two glassfish instances on a dedicated server, but it could have been deployed on the cloud with Jelastic.
Better that embedded Jetty/Tomcat, you'd better use a more classical approach to remain compatible with the hostings providers. Also targeting a full JEE6 server is not insane anymore (light for some values of light, fast, well documented)
Please, make an API server, even basic, from the start and keep the web front-end as much stateless as possible.
Shameless plug: I'm a freelance, I rock in JEE6 and I'm a Ror padawan.
Apache, Tomcat, mod-jk, JSON/REST and loads of freedom...
If a lightweight is needed, Nginx+Jetty or Resin is imho better that Tomcat ... until you need to coexist with an app that's Tomcat friendly.
In theory your JEE6 apps could be the same right? Why separate? For separation of concerns? Future scaling?
Why JEE6? I'm not familiar with JEE.. But haved produced quite the many APIs with SpringMVC/Jackson. So was thinking of going that route for now.. Even using JSP for basic pages - since modern web pages seem to be more client side anyways, I figure fancy server side templating is becoming less important.
At any rate, I think I need to soften up my stance on wanting my app to contain the web server (container), and let the container contain my app. Java life will just be easier that way!
Spring MVC is also fine, in the end what's important is what we're effective with. I prefers to use standards, thought.
An anotehr reason to use a container: you won't mess with the configuration in your code. Normally, you just use JNDI name for resources lookup in you app and let the container admin manage these resources (configuration of the db, db caching, javamail conf, etc etc). A kind of another separation of concerns.
The frontend layer needs to be agnostic of how the middle layer is implemented, and the middle layer agnostic of the backend.
JSON and REST are universal, so if everything communicates using that, you are in good shape if you ever partner with other companies or get acquired.