TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: Good resources to learn Java EE

14 点作者 alicorn超过 7 年前
In my new workplace, we have several web projects built with Java EE. I had not done any Java programming before starting here. Two months in, I am able to contribute to maintenance of said projects and develop new features based on the existing code, but I lack knowledge to meaningfully improve the design of the application (meaning architecture / code patterns). There is only one other person who knows more than I do about Java EE (he built the things), but he does not have too much knowledge about the more advanced aspects of Java EE application design either. So could you recommend any good resources for learning Java EE? Especially about: - load balancing / HA, - multithreading, - developing an API for external consumption (not entirely Java EE related). We are not using the Spring framework. Any recommendation about good design patterns in Java EE is also very appreciated.

2 条评论

agibsonccc超过 7 年前
This might be a hard pill to swallow...but it&#x27;s going to be highly dependent on your app server.<p>Java EE is just a set of annotations with several different vendors implementing the standard in an app container.<p>I would look at the docs for whatever your employer is using.<p>A lot of it comes down to knowing some basic fundamentals about web development. For example: Load balancing&#x2F;HA can be done in several different ways not tied to Java EE, the same is true of any of the things you&#x27;re mentioning.<p>Largely, HA can be done with your app server. An API is just REST which means the jaxrs implementation.<p>Multi threading dynamics are typically app server specific. Generally &quot;let your container do it&quot; is the right answer though.<p>Source: Been doing java since spring 2.0 as well as dealing with app servers ranging from glassfish to jboss (now wildfly).
评论 #16308365 未加载
BjoernKW超过 7 年前
I haven&#x27;t used it myself because I&#x27;m mostly dealing with Spring applications but from a cursory look this seems like good place to start: <a href="https:&#x2F;&#x2F;javaee.github.io&#x2F;tutorial&#x2F;" rel="nofollow">https:&#x2F;&#x2F;javaee.github.io&#x2F;tutorial&#x2F;</a>
评论 #16302577 未加载