idea如何导入javaee源码?

发布于 2022-09-04 11:35:55 字数 79 浏览 10 评论 0

idea版本为 2016.3.1
IntelliJ IDEA 2016.3.1 ultimate版本
如何导入javaee的源码?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

酒中人 2022-09-11 11:35:56

http://stackoverflow.com/ques...

Java EE is an abstract API. It exist of just contracts (as you see in javadocs), not concrete code. The application servers are the concrete implementations. So, if you're looking for the source, you should look at the application server vendor's homepage for a source code download link. However, you're unlucky with Weblogic. It is not open source. I've never used Weblogic (I am an open source fan), so I'm not sure if the source is provided along the Weblogic license, you might want to contact Weblogic support team.
Other servers, like Tomcat, Glassfish, JBoss AS, etc are open source. WebSphere AS has also a "Community Edition" which is open source. You could grab the javax. API source code from any of them, but there is no guarantee that they are exactly the same as Weblogic uses. And still then, they do not provide the concrete Weblogic implementation code (like as the code in org.apache., com.sun. and org.jboss. packages in aforementioned open source servers).

所以想看J2EE源码,我只能假设你是想看Tomcat的具体实现(Glassfish、JBoss有各种的实现),
http://tomcat.apache.org/down... 搜索 Source Code,下载apache-tomcat-9.0.0.M17-src.zip,解压。
clipboard.png

打开Intellij Idea => import project => 选择目录 => Create project from existing sources => next => next .... => finish

clipboard.png

clipboard.png

以上。

花心好男孩 2022-09-11 11:35:56

使用file-》open,接着一步一步下去,就可以了

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文