JPA转换器中的CDI注入类(EclipseLink)

时间:2015-09-17 15:41:13

标签: java jpa eclipselink converter cdi

我有一个问题,可以在JPA转换中使用java CDI吗?

我正在做一些测试,我无法在转换器中注入对象:

我使用的是eclipseLink,请查看我的代码,请在我出错的地方分析我的代码?我怎样才能以最好的方式做到这一点?

基本上为了更好地理解,我会有一个会话bean代表我的用户登录,这个会话Bean我有User TimeZone,我想在My Converter中注入这个时区来写数据库中的数据

我的代码:

JPA转换器: org.eclipse.persistence.mappings.converters.Converter

package joda;

import inject.qualifier.UserTimeZoneQualifier;

import java.sql.Timestamp;
import java.text.SimpleDateFormat;
import java.util.Date;

import javax.enterprise.context.RequestScoped;
import javax.inject.Inject;

import org.eclipse.persistence.mappings.DatabaseMapping;
import org.eclipse.persistence.mappings.converters.Converter;
import org.eclipse.persistence.sessions.Session;
import org.joda.time.DateTime;
import org.joda.time.DateTimeZone;
import org.joda.time.format.DateTimeFormat;
import org.joda.time.format.DateTimeFormatter;

import enumerator.UserType;
import security.UserSession;

@RequestScoped
public class JodaDateTimeUTCConverter implements Converter {
private static final long serialVersionUID = 1L;

// JUST TEST IT'S WAS INJECT AND REMOVE
private UserSession userSession = new UserSession("America/Mexico_City", UserType.HIGH_HISK);

@Inject
@UserTimeZoneQualifier
String userTimeZone;

//TODO FOR TEST
DateTimeFormatter dtf = DateTimeFormat.forPattern("dd/MM/yyyy HH:mm:ss:SSS - z - ZZZZZZZZZZZZZZZZZZ");
SimpleDateFormat dt = new SimpleDateFormat("dd/MM/yyyy HH:mm:ss:SSS - z - ZZZZZZZZZZZZZZZZZZ"); 

@Override
public Object convertDataValueToObjectValue(Object dataValue, Session session) {
    // TODO REMOVE
    DateTimeZone timeZone = DateTimeZone.forID(userSession.getTimeZoneLocale());
    System.out.println("BEFORE OF CONVERTION : " + dt.format(dataValue));
    System.out.println("AFTER  OF CONVERTION : " + dtf.print(new DateTime((Timestamp) dataValue).withZone(timeZone)));
    System.out.println("userTimeZone INJECT" + userTimeZone);


    return dataValue instanceof Date ? new DateTime((Timestamp) dataValue).withZone(timeZone) : null;

}

@Override
public Object convertObjectValueToDataValue(Object objectValue, Session session) {

    System.out.println("GO TO DB(DATAVALUE)");
    System.out.println("AFTER  OF CONVERTION : " + dtf.print(((DateTime) objectValue).withZone(DateTimeZone.UTC)));

    return objectValue instanceof DateTime?((DateTime) objectValue).withZone(DateTimeZone.UTC).toLocalDateTime().toDate() : null;
}

@Override
public void initialize(DatabaseMapping mapping, Session session) {
}

@Override
public boolean isMutable() {
    return false;
}

public String getUserTimeZone() {
    return userTimeZone;
}

public void setUserTimeZone(String userTimeZone) {
    this.userTimeZone = userTimeZone;
}
}

我的@UserTimeZoneQualifier:

package inject.qualifier;

import static java.lang.annotation.ElementType.FIELD;
import static java.lang.annotation.ElementType.METHOD;
import static java.lang.annotation.ElementType.PARAMETER;
import static java.lang.annotation.ElementType.TYPE;

import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

import javax.inject.Qualifier;

@Qualifier
@Retention(RetentionPolicy.RUNTIME)
@Target({FIELD, METHOD, TYPE, PARAMETER})
public @interface UserTimeZoneQualifier {

}

和我的UserSessionProduce:

package inject;

import inject.qualifier.UserTimeZoneQualifier;

import javax.annotation.PostConstruct;
import javax.enterprise.inject.Produces;

import enumerator.UserType;
import security.UserSession;

public class UserSessionProduce {

private UserSession userSession;

@PostConstruct
public void init(){
    this.userSession = new UserSession("America/Mexico_City", UserType.ADMINISTRATOR);
}

@Produces
public UserSession getUserSessionInstance(){
    return this.userSession;
}

@Produces
@UserTimeZoneQualifier
public String getUserSessionTimeZone(){
    return this.userSession.getTimeZoneLocale();
}

@Produces
public UserType getUserType(){
    return this.userSession.getUserType();
}
}

注意:在注入Converter之外,所有其他功能都运行正常,我可以弹出EntityManager和其他类以及将数据保存在数据库中

1 个答案:

答案 0 :(得分:2)

不幸的是,你不能。该规范要求在EntityListener实现中支持CDI注入。它没有应用于转换器。

如果要访问注入点,可以使用CDI.current()访问CDI<Object>实例。使用它就像使用Instance<Object>一样 - 您可以执行.select(qualifier).select(clazz).get()之类的操作来检索bean实例。

如果您需要使用限定符,则首先需要文字。

public class UserTimeZoneQualifierLiteral extends AnnotationLiteral<UserTimeZoneQualifier> implements UserTimeZoneQualifier {

}

然后实例化

UserTimeZoneQualifier qualifier = new UserTimeZoneQualifier(); // or use a singleton here.