gpt4 book ai didi

java - 使用 spring 部署到 Tomcat 的简单应用程序

转载 作者:行者123 更新时间:2023-11-28 22:44:28 25 4
gpt4 key购买 nike

我有一个带有 spring 的简单独立应用程序(主类 + bean 类)。它创建 MBean (JMX)。

它只是启动了我的 bean。

主类:

public class Main {
public static void main(final String[] args) {
ApplicationContext ac = new ClassPathXmlApplicationContext("cont.xml");
try {
Thread.sleep(1000 * 60 * 5);
} catch (final Throwable t) {}
}

bean

public class Test {
private String val = "";
public String getVal() {
return val;
}
public void setVal(String v) {
val = v;
}

cont.xml

    <?xml version="1.0" encoding="UTF-8"?>
<beans
xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd"
default-lazy-init="true">
<bean id="test" class="test.Test" />
<bean class="org.springframework.jmx.support.MBeanServerFactoryBean">
<property name="locateExistingServerIfPossible" value="true" />
</bean>
<bean class="org.springframework.jmx.export.MBeanExporter" lazy-init="false">
<property name="assembler">
<bean class="org.springframework.jmx.export.assembler.MethodNameBasedMBeanInfoAssembler" >
<property name="managedMethods">
<list>
<value>getVal</value>
<value>setVal</value>
</list>
</property>
</bean>
</property>
<property name="beans">
<map>
<entry key="bean:name=Test" value-ref="test"/>
</map>
</property>
</bean>
</beans>

如何在 tomcat 上运行相同的示例?谢谢!

最佳答案

使用

<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:cont.xml</param-value>
</context-param>

<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

在您的 web.xml 中。这将实例化在 cont.xml 中配置的所有 bean。

关于java - 使用 spring 部署到 Tomcat 的简单应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12278283/

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