gpt4 book ai didi

java - Glassfish 不处理 java

转载 作者:太空宇宙 更新时间:2023-11-04 14:40:55 24 4
gpt4 key购买 nike

我的 glassfish 服务器存在以下问题:

我已将一个简单的应用程序部署到服务器。服务器正确接收应用程序,就像在网络存档中一样。当我在浏览器中打开相应网站时,HTML 和 CSS 正确显示,但表达式语言的内容只是空的。此外,似乎 java 代码甚至没有执行,因为我看不到 system.out 的输出。

应用程序本身在本地 glassfish 服务器上运行得非常好。

附件是源代码和 web.xml。

Controller 类:

import java.io.Serializable;
import javax.enterprise.context.SessionScoped;
import javax.inject.Named;

@Named
@SessionScoped
public class CarController implements Serializable {

String test = "hallo";

public String getTest() {
return test;
}
}

index.xhtml:

<?xml version='1.0' encoding='UTF-8' ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://xmlns.jcp.org/jsf/html">
<h:head>
<title>Facelet Title</title>
</h:head>
<h:body>
#{carController.test}
</h:body>
</html>

web.xml:

<?xml version="1.0" encoding="UTF-8"?>
<web-app version="3.1" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd">
<context-param>
<param-name>javax.faces.PROJECT_STAGE</param-name>
<param-value>Development</param-value>
</context-param>
<servlet>
<servlet-name>Faces Servlet</servlet-name>
<servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>Faces Servlet</servlet-name>
<url-pattern>/faces/*</url-pattern>
</servlet-mapping>
<session-config>
<session-timeout>
30
</session-timeout>
</session-config>
<welcome-file-list>
<welcome-file>faces/index.xhtml</welcome-file>
</welcome-file-list>
</web-app>
  • Glassfish 版本:4
  • Java 版本:“1.7.0_65”(Java 安装适用于任何非 glassfish 应用程序)
  • Ubuntu 版本:14.04。

最佳答案

好的,问题解决了。

我们的应用程序由 4 个项目组成。问题是,一个项目的目标 java 版本是 8,而服务器上只安装了 7。

关于java - Glassfish 不处理 java,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24939596/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com