java-ee - idea如何导入javaee源码?

查看:389
本文介绍了java-ee - idea如何导入javaee源码?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

问 题

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

解决方案

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,解压。

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

以上。

这篇关于java-ee - idea如何导入javaee源码?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆