我使用Eclipse/Ant已经有一段时间了,因此决定看看NetBeans/Maven来开发我的JSF。在此过程中,我想我应该尝试使用一个比我在glassfish/modules
中安装的版本更新的Mojarra。我似乎无法让它发挥作用,而且由于我是Maven和Netbeans的新手,我不确定它是与这些相关的东西,还是其他的东西。
@Named
@RequestScoped
public class Info
{
public String getVersion()
{
return FacesContext.class.getPackage().getImplementationVersion();
}
}
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://xmlns.jcp.org/jsf/html">
<h:body>
<h:outputText value="The Mojarra version is #{info.version}" />
</h:body>
</html>
Mojarra版本为2.2.5
正如我所预料的(我把2.2.5 jar放入glassfish/modules
)。然后我添加了Mojarra 2.2.7的依赖项,这是我从Mojarra Web站点找到的:
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>javax.faces</artifactId>
<version>2.2.x</version>
</dependency>
“X”改为“7”。得到的POM文件如下所示(大部分是Netbeans的样板文件):
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.mycompany</groupId>
<artifactId>mavenproject1</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>war</packaging>
<name>mavenproject1</name>
<properties>
<endorsed.dir>${project.build.directory}/endorsed</endorsed.dir>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-web-api</artifactId>
<version>7.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.glassfish</groupId>
<artifactId>javax.faces</artifactId>
<version>2.2.7</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<compilerArguments>
<endorseddirs>${endorsed.dir}</endorseddirs>
</compilerArguments>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.3</version>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.6</version>
<executions>
<execution>
<phase>validate</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<outputDirectory>${endorsed.dir}</outputDirectory>
<silent>true</silent>
<artifactItems>
<artifactItem>
<groupId>javax</groupId>
<artifactId>javaee-endorsed-api</artifactId>
<version>7.0</version>
<type>jar</type>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
<class-loader delegate="false" />
<property name="useBundledJsf" value="true" />
尽管我使用的是GF4,但我还是想试一试,并添加了glassfish-web.xml
:
glassfish-web.xml:
<glassfish-web-app error-url="">
<class-loader delegate="false" />
<property name="useBundledJsf" value="true" />
</glassfish-web-app>
结果是一个页面显示了带有空版本字符串的消息:
基本上,我得到了同样的结果。如果useBundledJsf属性设置不在glassfish-web.xml文件中,则版本显示为2.2.7(即使war文件中包含2.2.12)。如果useBundledJsf属性设置存在,并且将类加载器更改为“false”,则版本为空。
我还通过将glassfish安装中的javax.faces文件更改为使用2.2.10来安装Mojarra2.2.10。当我这样做时,我得到了相同的结果--要么版本为空,要么显示2.2.10(仍然配置了2.2.12,并且在这两种情况下都处于战争状态)。
另一种解决方案是尝试Payara 4.1.1.154,因为它与Mojarra 2.2.12捆绑在一起
我想这可以是一个很好的解决你的需要。
This section details the modules that have been updated since the last release (4.1.153).
Mojarra 2.2.12
Webservices 2.3.2-b608
JAXB 2.2.12-b141219.1637
JAXB-API 2.2.13-b141020.1521
Weld 2.2.16.Final
Tyrus 1.11
JBatch 1.0.1-b09
Grizzly 2.3.23
HK2 2.4.0-b32
Jersey 2.22
Hazelcast 3.5.2
https://javaserverfaces.java.net/nonav/2.2/releasenotes.html列出了JSF2的两个不同版本的分支。奇怪的是,2.2.8-xx似乎比2.2.9及以上版本更近。 一些错误仅在2.2.9中修复(https://github.com/javaserverfaces/mojarra/issues/3384),有些仅在2.2.8-xx中出现(https
我的电脑有2个jre文件夹,分别是jre1.8.0_331和jre1.8.0_333。我怎么知道jre使用的是什么版本?谢谢!
问题内容: 我正在为uni开发一个项目,并且一直在基于的表中使用to上的以下代码: 这在我的测试服务器上运行良好,但是在迁移到大学项目服务器时返回此错误: 一些谷歌搜索建议使用代替,但我不知道如何在表中做到这一点。大多数示例仅显示返回 任何帮助将非常感激 问题答案: 假设您无法使用并且想要一系列设备,则可以执行以下操作: 这将创建一个临时数组并将其每一行中的数据存储在其中,然后将其推入主数组。据我
我正在尝试将WebSphere 9配置为使用Mojarra 2.2,这是我迄今为止所做的: 然而,当我启动服务器时,我在SystemOut上看到以下消息。日志: 下面是关于SystemErr的内容。日志: 我错过了什么?Mojarra 2.2不是与WebSphere 9兼容吗?我已经尝试了几十种不同的组合(MyFaces 2.2、MyFaces 2.0、类加载器的parent first、类加载器
我执行了以下步骤,但在两个不同版本的NetBeans8.2和11.3中仍然得到错误'Not Found'(说明:Not Found请求的URL在此服务器上没有找到。Apache/2.4.41(Win64)PHP/7.3.12服务器的本地主机端口80)。 第一步。运行WampServer Version3.2.064bit安装在Windows 10 OS上==>我在状态栏中看到绿色图标,表示所有服务