如何在Jboss重新启动时添加请求?

huangapple go评论70阅读模式
英文:

How to add request on Jboss restart?

问题

是的,可以在Jboss(Wildfly 10.1.0)启动/重新启动时向连接的数据库发送请求吗?更具体地说,我想在重新启动时清空一些表格。

英文:

It is possible to send a request from Jboss (Wildfly 10.1.0) to connected database on start/restart? To be more specific I want to clear some tables on restart.

答案1

得分: 2

你可以在你的应用程序中创建一个启动 EJB。

@Startup
@Singleton
public class MyStartupBean {

@PostConstruct
public void init() {
    // 清除表格
}
英文:

You could create a startup EJB in your application.

@Startup
@Singleton
public class MyStartupBean {

@PostConstruct
public void init() {
    // clear the tables
}

huangapple
  • 本文由 发表于 2020年8月3日 23:19:17
  • 转载请务必保留本文链接:https://go.coder-hub.com/63232204.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定