Web 应用程序服务器从 7.0 迁移到 8.5.5.4
Web Application Server migrate from 7.0 to 8.5.5.4
我们在我的公司中使用 JRE 7.0 从 WAS 7.0 迁移到 WAS 8.5.5.4,因为所有依赖项都不是开源的,我没有关于以下目标的信息:
<dependency>
<groupId>ibm</groupId>
<artifactId>com.ibm.ws.runtime</artifactId>
<version>${com.ibm.ws.runtime.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>ibm</groupId>
<artifactId>etools.xsd.bean.runtime</artifactId>
<version>${etools.xsd.bean.runtime.version}</version>
</dependency>
<dependency>
<groupId>ibm</groupId>
<artifactId>j2ee</artifactId>
<version>${j2ee.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>ibm</groupId>
<artifactId>marshall</artifactId>
<version>${ibm.marshall.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>ibm</groupId>
<artifactId>wsatlib</artifactId>
<version>${ibm.wsatlib.version}</version>
<scope>provided</scope>
</dependency>
我的问题是,我是否需要更新以下依赖项(默认情况下我认为是的,因为 linked 到 7.0 是)?在这种情况下,WAS 8555 中的依赖项是什么,我知道 IBM 已经更改了 WAS 85554 中依赖项的 groupId/ArtifactId。因为我不知道依赖项的实用性,实际上我无法做到link有新闻。
看起来你会使用:
<dependency>
<groupId>com.ibm.tools.target</groupId>
<artifactId>was</artifactId>
<version>8.5.5</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
有关 POM 依赖项,请参阅 https://www.ibm.com/support/knowledgecenter/SSEQTP_8.5.5/com.ibm.websphere.wdt.doc/topics/localrepo.htm?cp=SSEQTP_8.5.5&lang=en。
辛迪
我们在我的公司中使用 JRE 7.0 从 WAS 7.0 迁移到 WAS 8.5.5.4,因为所有依赖项都不是开源的,我没有关于以下目标的信息:
<dependency>
<groupId>ibm</groupId>
<artifactId>com.ibm.ws.runtime</artifactId>
<version>${com.ibm.ws.runtime.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>ibm</groupId>
<artifactId>etools.xsd.bean.runtime</artifactId>
<version>${etools.xsd.bean.runtime.version}</version>
</dependency>
<dependency>
<groupId>ibm</groupId>
<artifactId>j2ee</artifactId>
<version>${j2ee.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>ibm</groupId>
<artifactId>marshall</artifactId>
<version>${ibm.marshall.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>ibm</groupId>
<artifactId>wsatlib</artifactId>
<version>${ibm.wsatlib.version}</version>
<scope>provided</scope>
</dependency>
我的问题是,我是否需要更新以下依赖项(默认情况下我认为是的,因为 linked 到 7.0 是)?在这种情况下,WAS 8555 中的依赖项是什么,我知道 IBM 已经更改了 WAS 85554 中依赖项的 groupId/ArtifactId。因为我不知道依赖项的实用性,实际上我无法做到link有新闻。
看起来你会使用:
<dependency>
<groupId>com.ibm.tools.target</groupId>
<artifactId>was</artifactId>
<version>8.5.5</version>
<type>pom</type>
<scope>provided</scope>
</dependency>
有关 POM 依赖项,请参阅 https://www.ibm.com/support/knowledgecenter/SSEQTP_8.5.5/com.ibm.websphere.wdt.doc/topics/localrepo.htm?cp=SSEQTP_8.5.5&lang=en。
辛迪