codecamp

IDEA应用程序服务器

使用应用程序服务器(Tomcat/TomEE,JBoss EAP,Glassfish,WebLogic,WebSphere)

此功能仅在Ultimate版本中受支持。

在IntelliJ IDEA中部署到应用程序服务器与Eclipse中可能使用的大致相似。将您的应用程序部署到服务器:

  1. 通过:Project Structure |工件(Project Structure | Artifacts)来配置你的工件 (为Maven和Gradle项目自动完成)。
  2. 通过:设置|应用程序服务器(Settings | Application Servers)来配置应用服务器。
  3. 创建运行配置,然后指定要部署的工件以及要部署到的服务器。

一旦工件已经通过:Build |构建工件(Build | Build Artifacts)配置,那么您可以随时通知IDE构建/重建工件 。

IDEA和Eclipse的调试
IntelliJ IDEA构建工具的使用
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

IntelliJ IDEA的一般准则

什么是IntelliJ IDEA项目

使用IntelliJ IDEA的意图行为

IntelliJ IDEA使用运行/调试配置

特定于VCS的程序

IntelliJ IDEA语言和特定框架指南

IntelliJ IDEA的数据库和SQL功能

IntelliJ IDEA使用之JavaServer Faces(JSF)

IntelliJ IDEA:分析PHP应用程序的性能

IntelliJ IDEA:调试PHP应用程序

IntelliJ IDEA:适用于PHP的Google App Engine

IntelliJ IDEA更多内容

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }