- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 Java EE 6 的新手,所以如果这个问题的答案很明显,我深表歉意。我有一项必须每小时运行一次才能从数据库重建 Solr 索引的任务。我还希望在部署应用程序时进行重建。我的直觉是这应该有效:
@Singleton
@Startup
public class Rebuilder {
@Inject private ProposalDao proposalDao;
@Inject private SolrServer solrServer;
@Schedule(hour="*", minute="0", second="0")
public void rebuildIndex() {
// do the rebuild here
}
}
public class ProposalSessionProvider {
private static final String CONFIGURATION_FILE = "...";
static {
try {
sessFactory = new SqlSessionFactoryBuilder().build(
Resources.getResourceAsReader(CONFIGURATION_FILE));
}
catch (IOException ex) {
throw new RuntimeException("Error configuring MyBatis: " + ex.getMessage(), ex);
}
}
@Produces
public ProposalsDao openSession() {
log.info("Connecting to the database");
session = sessFactory.openSession();
return session.getMapper(ProposalsDao.class);
}
}
@PostConstruct
方法? @Singleton
连接永远不会被释放,但放置 @Startup
甚至有意义吗?在 @Stateless
bean 角,扁 bean ? @PostConstruct
处理初始重建,否则我每小时都会进行两次重建。 最佳答案
我不知道 myBatis 但我可以告诉你 @Schedule 工作是事务性的。无论如何,我不确定 JTA 托管事务是否会根据您检索 session 的方式在此处应用。没有办法在 MyBatis 中检索 persistenceContext 吗?对于触发器部分,恕我直言@Startup 将正确完成工作,因此需要一个单例 bean。无论如何,我无法告诉您您提出的两种方法中哪一种是最好的。
关于ejb - 使用 Java EE 6 进行计划数据库维护(连接生命周期),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15167598/
我正在开发一个使用多个 turtle 的滚动游戏。玩家 turtle 根据按键命令在 Y 轴上移动。当危害和好处在 X 轴上移动时,然后循环并改变 Y 轴位置。我尝试定义一个名为 colliding(
我不明白为什么他们不接受这个作为解决方案,他们说这是一个错误的答案:- #include int main(void) { int val=0; printf("Input:- \n
我正在使用基于表单的身份验证。 我有一个注销链接,如下所示: 以及对应的注销方法: public String logout() { FacesContext.getCurren
在 IIS7 应用程序池中有一个设置 Idle-time out 默认是 20 分钟,其中说: Amount of time(in minutes) a worker process will rem
我是一名优秀的程序员,十分优秀!