- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个非常简单的带有maven的ejb 3.0模块,它只有两个 session bean,一个是无状态的,另一个是单例的...当我尝试在Glassfish 3.0服务器上部署该项目时,我得到了这个异常:
Error occurred during deployment: Exception while deploying the app : Invalid ejb jar : it contains zero ejb. Note: 1. A valid ejb jar requires at least one session, entity (1.x/2.x style), or message-driven bean. 2. EJB3+ entity beans (@Entity) are POJOs and please package them as library jar. 3. If the jar file contains valid EJBs which are annotated with EJB component level annotations (@Stateless, @Stateful, @MessageDriven, @Singleton), please check server.log to see whether the annotations were processed properly.. Please see server.log for more details.
我使用 Glassfish Verifier Tool 验证项目,遇到此异常,但我不知道该怎么办?
Verifier output unparsable
Verifier output (C:\Users\Mariam.Moustafa\Documents\NetBeansProjects\web\EmployeesTimer\target\EmployeesTimer-1.0-SNAPSHOT.jar.xml) not found.
这是 pom.xml:
<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.unilever</groupId>
<artifactId>EmployeesTimer</artifactId>
<version>1.0-SNAPSHOT</version>
<packaging>ejb</packaging>
<name>EmployeesTimer</name>
<properties>
<endorsed.dir>${project.build.directory}/endorsed</endorsed.dir>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<dependencies>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-bundle</artifactId>
<version>1.8</version>
</dependency>
<dependency>
<groupId>javax</groupId>
<artifactId>javaee-api</artifactId>
<version>6.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
<version>1.9.2</version>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-core-asl</artifactId>
<version>1.9.2</version>
</dependency>
<!-- slf4j Logger -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.7</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.7</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
<compilerArguments>
<endorseddirs>${endorsed.dir}</endorseddirs>
</compilerArguments>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-ejb-plugin</artifactId>
<version>2.3</version>
<configuration>
<ejbVersion>3.1</ejbVersion>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.1</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>6.0</version>
<type>jar</type>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<repositories>
<repository>
<id>unknown-jars-temp-repo</id>
<name>A temporary repository created by NetBeans for libraries and jars it could not identify. Please replace the dependencies in this repository with correct ones and delete this repository.</name>
<url>file:${project.basedir}/lib</url>
</repository>
<repository>
<id>m2.dev.java.net</id>
<url>http://download.java.net/maven/2</url>
<layout>default</layout>
</repository>
<repository>
<id>prime-repo</id>
<name>PrimeFaces Maven Repository</name>
<url>http://repository.primefaces.org</url>
<layout>default</layout>
</repository>
</repositories>
</project>
我确认我有 2 个简单的 ejb
@Stateless public class EmployeesFacade {}
@Singleton public class TimerService {
@EJB EmployeesFacade emloyeesFacade;
}
这是代码:
第一个@singleton ejb bean
package com.employeestimer.services;
import com.sun.jersey.api.client.Client;
import com.sun.jersey.api.client.ClientResponse;
import com.sun.jersey.api.client.WebResource;
import com.unilever.employeestimer.enums.ConnectionEnum;
import com.unilever.employeestimer.exceptions.BusinessException;
import java.io.IOException;
import javax.ejb.EJB;
import javax.ejb.Schedule;
import javax.ejb.Singleton;
import javax.naming.NamingException;
import javax.ws.rs.core.MediaType;
import org.codehaus.jackson.JsonProcessingException;
import org.slf4j.LoggerFactory;
@Singleton
public class TimerService {
static final org.slf4j.Logger LOGGER = LoggerFactory.getLogger(TimerService.class);
@EJB
EmployeesFacade emloyeesFacade;
private final static String U_ENGAGE_URL = "http://..../webresources/employees/update";
@Schedule(second="*", minute="*/1",hour="*", persistent=false)
public void doWork() throws JsonProcessingException, IOException, NamingException{
try{
String input = emloyeesFacade.getUsersData(ConnectionEnum.USERNAME.getCode(), ConnectionEnum.PASSWORD.getCode());
consumeRESTfulWebService(input);
}catch(BusinessException e){
LOGGER.error("",e);
}
}
private void consumeRESTfulWebService(String input){
try {
LOGGER.debug("input = " + input);
Client client = Client.create();
WebResource webResource = client.resource(U_ENGAGE_URL);
ClientResponse response = webResource.type(MediaType.TEXT_PLAIN).post(ClientResponse.class, input);
if (response.getStatus() != ClientResponse.Status.NO_CONTENT.getStatusCode()) {
throw new RuntimeException("Failed : HTTP error code : "
+ response.getStatus());
}
LOGGER.debug("Output from Server .... \n");
} catch (Exception e) {
LOGGER.error("",e);
}
}
}
这是 Facade bean:
package com.employeestimer.services;
import com.employeestimer.beans.EmployeeData;
import com.employeestimer.enums.ConfigurationsEnum;
import com.employeestimer.enums.ConnectionEnum;
import com.employeestimer.exceptions.BusinessException;
import java.io.IOException;
import java.util.ArrayList;
import java.util.Hashtable;
import java.util.List;
import javax.ejb.Stateless;
import javax.naming.Context;
import javax.naming.NamingEnumeration;
import javax.naming.NamingException;
import javax.naming.directory.Attribute;
import javax.naming.directory.SearchControls;
import javax.naming.directory.SearchResult;
import javax.naming.ldap.Control;
import javax.naming.ldap.InitialLdapContext;
import javax.naming.ldap.LdapContext;
import javax.naming.ldap.PagedResultsControl;
import javax.naming.ldap.PagedResultsResponseControl;
import org.codehaus.jackson.JsonProcessingException;
import org.codehaus.jackson.map.ObjectMapper;
import org.codehaus.jackson.map.ObjectWriter;
import org.slf4j.LoggerFactory;
@Stateless
public class EmployeesFacade {
static final org.slf4j.Logger LOGGER = LoggerFactory.getLogger(EmployeesFacade.class);
public String getLDAPConnectionType() {
return ConfigurationsEnum.LDAP_Connection_Type.getCode();
}
public String getDomain() {
return ConfigurationsEnum.DOMAIN.getCode();
}
public String getLDAPIP() {
return ConfigurationsEnum.LDAP_IP.getCode();
}
public String getLDAPPort() {
return ConfigurationsEnum.LDAP_PORT.getCode();
}
public String getLDAPBase() {
return ConfigurationsEnum.LDAP_BASE.getCode();
}
private LdapContext getContext(String username, String password) throws BusinessException, NamingException {
Hashtable env = new Hashtable();
if (getDomain() == null || getLDAPConnectionType() == null
|| getLDAPIP() == null || getLDAPPort() == null) {
throw new BusinessException("error_general");
}
String domain = getDomain();
String url = getLDAPConnectionType() + "://" + getLDAPIP() + ":" + getLDAPPort();
env.put(Context.INITIAL_CONTEXT_FACTORY, "com.sun.jndi.ldap.LdapCtxFactory");
env.put(Context.PROVIDER_URL, url);
env.put(Context.SECURITY_AUTHENTICATION, "simple");
env.put(Context.REFERRAL, "follow");
if (!username.contains("@")) {
username = username + "@" + domain;
}
env.put(Context.SECURITY_PRINCIPAL, username);
env.put(Context.SECURITY_CREDENTIALS, password);
return new InitialLdapContext(env, null);
}
public String getUsersData(String username, String password) throws BusinessException, JsonProcessingException, IOException, NamingException {
List<EmployeeData> employeelist = new ArrayList<EmployeeData>();
EmployeeData employee;
String json = "";
try {
LdapContext context = getContext(username, password);
SearchControls constraints = new SearchControls();
constraints.setSearchScope(SearchControls.SUBTREE_SCOPE);
String[] attrIDs = {"mail"}; //, "sn", "cn", "c", "l"};
constraints.setReturningAttributes(attrIDs);
// Activate paged results
int pageSize = Integer.parseInt(ConnectionEnum.PAGESIZE.getCode());
byte[] cookie = null;
context.setRequestControls(new Control[]{new PagedResultsControl(pageSize,
Control.NONCRITICAL)});
int total;
NamingEnumeration<SearchResult> result = null;
do {
/* perform the search */
result = context.search(getLDAPBase(), "(&(objectClass=User)(c=EG))", constraints);
/* for each entry print out name + all attrs and values */
while (result != null && result.hasMore()) {
SearchResult entry = (SearchResult) result.next();
employee = new EmployeeData();
Attribute attribute;
if (entry.getAttributes() != null) {
if (entry.getAttributes().get("mail") != null) {
attribute = entry.getAttributes().get("mail");
employee.setEmail(attribute != null ? attribute.toString().replace("mail: ", "") : "");
employeelist.add(employee);
}
}
}
// Examine the paged results control response
Control[] controls = context.getResponseControls();
if (controls != null) {
for (int i = 0; i < controls.length; i++) {
if (controls[i] instanceof PagedResultsResponseControl) {
PagedResultsResponseControl prrc = (PagedResultsResponseControl) controls[i];
total = prrc.getResultSize();
if (total != 0) {
LOGGER.debug("***************** END-OF-PAGE " + "(total : " + total + ") *****************\n");
} else {
LOGGER.debug("***************** END-OF-PAGE " + "(Page no. " + i + ") ***************\n");
}
cookie = prrc.getCookie();
}
}
} else {
LOGGER.debug("No controls were sent from the server");
}
// Re-activate paged results
context.setRequestControls(new Control[]{new PagedResultsControl(
pageSize, cookie, Control.CRITICAL)});
} while (cookie != null);
//result.close();
context.close();
ObjectWriter ow = new ObjectMapper().writer().withDefaultPrettyPrinter();
json = ow.writeValueAsString(employeelist);
LOGGER.debug("\n \n \n ************* \n ************* \n ************* \n \n THE SIZE = " + employeelist.size() + "\n \n ************* \n ************* \n ************* \n \n \n");
} catch (NamingException ex) {
String detailmessage = ex.getExplanation();
if (detailmessage.contains(" 32 ")) {
// User not Found
throw new BusinessException("error_invalidUser");
} else if (detailmessage.contains(" 49 ")) {
if (detailmessage.contains(" 775 ") || detailmessage.contains(" 701 ") || detailmessage.contains(" 533 ")) {
//Invalid Account
throw new BusinessException("error_invalidAccount");
} else {
//Invalid Username or password
throw new BusinessException("error_invalidUsernamePassword");
}
} else {
LOGGER.error("error_general", ex);
throw new BusinessException("error_general");
}
}
return json;
}
}
最佳答案
我没有发现您的设置有问题。如果您确实在该项目中有一些用 @Singleton
或 @Stateless
注释的类,那么这应该可以工作。
但重要的一点是,如果您有任何 Glassfish 库中不可用的依赖项,则必须将它们与您的应用程序一起打包,而 EJB/JAR 打包是不可能的。您必须将其打包为 WAR 或 EAR 文件。
要快速开始,请尝试以下操作:
改变
<packaging>ejb</packaging>
至
<packaging>war</packaging>
并改变
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-ejb-plugin</artifactId>
<version>2.3</version>
<configuration>
<ejbVersion>3.1</ejbVersion>
</configuration>
</plugin>
至
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>2.1.1</version>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
</configuration>
</plugin>
如果您想将其打包为 EAR,可以使用 maven-ear-plugin .
另请参阅:
关于java - Glassfish 3.0 : Exception while deploying ejb module. ..无效的 ejb j ar:它包含零个 ejb,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31003560/
我需要审核 ejb bean 的调用。说审计我的意思是将当前登录的用户、方法名称、附加描述等信息写入数据库。我决定使用 CDI 装饰器来做到这一点: @Decorator public class A
当我使用 EJB 3.0 部署 Web 应用程序时,我看到了以下警告: WARNING: jar 'E:\mws\MCDS\portal\portal-web\target\portal-web-1.
我正在学习 EJB,当尝试使用 junit 测试它时,出现以下错误 cd.espoirmur.Ejb.InterfaceEjbLocal_80488159 Jun 03, 2016 10:33:58
是否可以在另一个 EJB 中使用 @EJB?我现在正在尝试这样做,但我的 EJB 最终为空。我将在示例中概述我的问题。 @Stateless @LocalBean @Local(LoginServic
我已通读 article试图理解为什么要在客户端和实体 bean 之间有一个 session bean。是不是因为让客户端直接访问实体bean,就让客户端对数据库一清二楚了? 因此,通过使用中间人(
我们正在尝试在具有两个节点的以域模式运行的 Wildfly 中查找远程 EJB。 设置是这样的: Wildfly 节点 1: 模块 A:EJB 客户端 模块 B:远程 EJB Wildfly 节点 2
我正在使用 Jboss 7,并且有两个单独的部署,它们都包含单例 EJB。 我需要一个 EJB 才能访问另一个 EJB 并能够调用其方法,但是,当应用程序服务器启动并尝试部署它们时,它似乎无法保证哪个
可能最好的方法是手动完成。但是在大型项目中,您需要一些工具来帮助您。正是这个想法促使我搜索了一个工具。 是否有任何 EJB 迁移工具可用于将 EJB 2.0 迁移到 3.x。 最佳答案 它的开发时间很
I am migrating Ejb 2.1 to Ejb 3.1. I changed Java Version from 1.6 to 1.8, and Ejb Version from 2.1
我已经使用 @ActivationConfigProperty 配置了消息目标类型、名称等。在 EJB 3.0 中,但我想配置 MDB使用部署描述符 ( ejb-jar.xml ),就像在 EJB 2
假设我有两个 EJB jar:A.jar 和 B.jar。我可以使用 CDI 将不是 EJB 的实用程序类 Autil 注入(inject) A.jar 中的 POJO 到 B.jar 中的 EJB
我有一个需要配置不同的现有项目。这需要在没有重大代码更改的情况下发生。我实际上希望我只能通过配置以某种方式做到这一点。在过去的 2 到 3 天里,我一直在阅读我能找到的关于这个问题的所有内容。我了解
我有一个非常简单的带有maven的ejb 3.0模块,它只有两个 session bean,一个是无状态的,另一个是单例的...当我尝试在Glassfish 3.0服务器上部署该项目时,我得到了这个异
我们在微服务中看到的是一个孤立的组件,通过协议(protocol)通过网络与该组件的父消费者进行通信。 我们在 EJB 1.0 中看到了非常相似的模式。 我的问题是:微服务架构模式是否类似于 EJB
我在 Java EE6 Singleton Session Bean 中有一个方法,它每 30 秒由 @Schedule(...) 计时器调用。这按预期工作,直到在方法中抛出并捕获异常(异常在 try
我正在 JDeveloper 11.1.1.4 中开发一个 JAX-WS WebService,它应该使用之前部署到 WebLogic 服务器的 JAR 中的 EJB。 WebService项目和EJ
我正在尝试使用 JAX-RS 注释将一些 EJB 公开为 REST Web 服务。当我部署 war WEB-INF/lib 中包含 EJB Jar 的文件到 Wildfly 8,我可以在 Web 管理
我是 EJB 方面的新手,但我已经获得了 EJB 级别的提升。 该层由一个 EJB 组成,它公开可用的操作: @Stateless(name = "myejb") public class Facad
假设我想创建一个我将在未来项目中使用的库,但我还想在该库中包含引用其他 EJB 等的 EJB。该库还将包含简单的 Java 类。最好的方法是什么?在这种情况下如何定义依赖关系?我想我会用注释来定义它们
我想知道是否可以按照这些思路做一些事情: 1)服务器端(EJB类) @Statefull public class SomeEJB implements SomeEJBRemote { @Resour
我是一名优秀的程序员,十分优秀!