来自c#背景的Java新手。
我想要实现的只是通过jmx和rim向jConsole公开一个方法。
当我运行我的服务并打开jConsole时,我可以在那里看到方法并且看起来都很好,现在当我尝试通过控制台运行此方法时出现问题。我得到的错误是“问题调用helloWorld:java.rmi.UnmarshalException:错误解组返回;嵌套异常是:java.lang.ClassNotFoundException:org.springframework.jdbc.CannotGetJdbcConnectionException(没有安全管理器:禁用RMI类加载器)”。< / p>
我试图曝光的方法是
@ManagedOperation
public int helloWorld() throws Exception {
return jdbcTemplate.queryForInt(sql);
}
这是我的applicationContext文件
<!-- this bean must not be lazily initialized if the exporting is to happen -->
<bean id="exporter" class="org.springframework.jmx.export.MBeanExporter" lazy-init="false">
<property name="assembler" ref="assembler" />
<property name="namingStrategy" ref="namingStrategy" />
<property name="autodetect" value="true" />
</bean>
<bean id="jmxAttributeSource" class="org.springframework.jmx.export.annotation.AnnotationJmxAttributeSource" />
<!-- will create management interface using annotation metadata -->
<bean id="assembler" class="org.springframework.jmx.export.assembler.MetadataMBeanInfoAssembler">
<property name="attributeSource" ref="jmxAttributeSource" />
</bean>
<!-- will pick up the ObjectName from the annotation -->
<bean id="namingStrategy" class="org.springframework.jmx.export.naming.MetadataNamingStrategy">
<property name="attributeSource" ref="jmxAttributeSource" />
</bean>
<context:component-scan base-package="com.bulks" />
<!-- enable annotations like @Autowired, which you also most likely need -->
<context:annotation-config/>
<bean class="com.bulksms.resources.HelloWorldResource"/>
<!-- setup basic datasource -->
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="com.mysql.jdbc.Driver"></property>
<property name="url" value="jdbc:mysql://localhost:3306/apu"></property>
<property name="username" value="root"></property>
<property name="password" value="password"></property>
</bean>
<!-- jdbcTemplate bean -->
<bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate">
<property name="dataSource" ref="dataSource"></property>
</bean>
我缺少什么,所以我的方法可以从控制台执行?
----- ------解 因此,经过长时间的黑客攻击,我试图将sql部分放在自己的方法中,然后在helloWorld方法中调用该方法....低,看哪! SUCCESS !!!
public int helloWorld() throws Exception {
setValueFromQuery();
return value;
}
private void setValueFromQuery() {
this.value = jdbcTemplate.queryForInt(sql);
}
答案 0 :(得分:0)
您的异常是一个嵌套异常,因此它发生在您的应用程序上,
java.lang.ClassNotFoundException: org.springframework.jdbc.CannotGetJdbcConnectionException
所以它说有一个缺少的类,可能是jdbc
,请确保你在类路径中有它。
如果您拥有它,请检查DB
的连接条件。