我有一个服务器端事件,并在@MessageDriven bean中接收到一个对象,然后在@ApplicationScoped bean中调用一个方法以在已知的语言环境中准备电子邮件。我需要资源包中的条目来准备动态消息(许多翻译错误消息,语言已在消息对象中编码)。
我尝试建立一个消息提供程序:
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 static java.lang.annotation.RetentionPolicy.RUNTIME;
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.Target;
import javax.inject.Qualifier;
/**
* @author Jochen Buchholz
*
*/
@Qualifier
@Documented
@Retention(RUNTIME)
@Target({ TYPE, FIELD, METHOD, PARAMETER })
public @interface MessageBundle {
}
提供者:
import java.util.MissingResourceException;
import java.util.ResourceBundle;
import javax.enterprise.inject.Produces;
import javax.inject.Named;
@Named
public class MessageProvider {
private ResourceBundle bundle;
public MessageProvider() {
this.bundle = null;
}
@Produces @MessageBundle
public ResourceBundle getBundle() {
if (bundle == null) {
FacesContext context = FacesContext.getCurrentInstance();
bundle = context.getApplication()
.getResourceBundle(context, "msgs");
}
return bundle;
}
}
我这样称呼它(简化):
@Named
@ApplicationScoped
public class SmtpSenderBean {
@EJB
private SendMail sendmail;
@Inject @MessageBundle
private ResourceBundle bundle;
public void send(Email mail, int errorCode){
String subjectMsg = bundle.getString("event.smtp.subject");
String bodyMsg = bundle.getString("event.smtp.body");
mail.setSubject(MessageFormat.format(subjectMsg, errorCode));
mail.setBody(MessageFormat.format(bodyMsg, errorCode))
sendmail.send(mail);
}
}
FacesContext始终为null,因为Bean不是由jsf触发的。通过JMS将对象作为服务器端事件接收。我对此问题一无所获。在CDI中访问@ApplicationScoped bean中的资源包的首选方式是什么?
答案 0 :(得分:0)
我通过直接访问资源包解决了它。我认为这是最佳做法,因为我没有发现这种特殊情况的示例/文档:
@Produces @MessageBundle
public ResourceBundle getBundle() {
if (bundle == null) {
bundle = ResourceBundle.getBundle("com.example.msgs");
}
return bundle;
}