gpt4 book ai didi

java - WebAppContext 将参数传递给 servlet 构造函数

转载 作者:搜寻专家 更新时间:2023-10-31 20:18:23 25 4
gpt4 key购买 nike

我在主类中有 webAppContext,我有一个 servlet,它有 WebServlet 注释和带参数的构造函数。我如何将参数从主类传递到 Servlet?

主要.java:

String webappDirLocation = "src/main/java/frontend/webapp/";
WebAppContext webAppContext = new WebAppContext();
webAppContext.setResourceBase("public_html");
webAppContext.setContextPath("/");
webAppContext.setDescriptor(webappDirLocation + "WEB-INF/web.xml");
webAppContext.setConfigurations(new Configuration[]{
new AnnotationConfiguration(), new WebXmlConfiguration(),
new WebInfConfiguration(),
new PlusConfiguration(),
new MetaInfConfiguration(),
new FragmentConfiguration(),
new EnvConfiguration()}
);
webAppContext.setAttribute("org.eclipse.jetty.server.webapp.ContainerIncludeJarPattern", ".*/classes/.*");
webAppContext.setParentLoaderPriority(true);

web.xml:

<?xml version="1.0" encoding="UTF-8"?>
<web-app
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
metadata-complete="false"
version="3.0">
</web-app>

小服务程序:

@WebServlet(name = "WebSocketGameServlet", urlPatterns = {"/gameplay"})
public class WebSocketGameServlet extends WebSocketServlet {
static final Logger logger = LogManager.getLogger(GameWebSocket.class);
private final static int IDLE_TIME = 6000 * 1000;
private AccountService accountService;
private Game game;
private WebSocketService webSocketService;

public WebSocketGameServlet(AccountService accountService, Game game, WebSocketService webSocketService) {
this.accountService = accountService;
this.game = game;
this.webSocketService = webSocketService;
}

@Override
public void configure(WebSocketServletFactory factory) {
factory.getPolicy().setIdleTimeout(IDLE_TIME);
factory.setCreator(new GameWebSocketCreator(accountService, game, webSocketService));
}
}

最佳答案

嗯,据我了解,您使用 JavaSE 和嵌入式 Jetty 创建了 Web 应用程序。您使用注释将 servlet 添加到您的服务器。然后 Jetty 创建它调用默认构造函数的 servlet。但是您需要以某种方式将链接传递给您在 main() 中创建的对象到您的 servlet。

所以,有几种解决方案:

  1. 创建您自己的“dependency injection”:将单例类 Context 添加到您的应用程序。在 main() 中将您的服务放入 Map<Class<?>, Object>的上下文。并将它们放入 servlet 中。
  2. 使用依赖注入(inject)框架。喜欢Spring .
  3. 转到 J2EE 并使用 EJB .在这种情况下,您需要忘记自己的 main()并由网络服务器管理。

附言 jetty 服务器有方法 addBean(...) .您可以将“bean”添加到服务器(在代码或配置中)。但据我所知,不可能在 servlet 中获取此 bean。

关于java - WebAppContext 将参数传递给 servlet 构造函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32534278/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com