Spring Webアプリケーションでjmxを使用して認証を有効にするにはどうすればよいですか?spring jmx authentication
答えて
ほとんど私のために働いている解決策のためにここを見てください:
http://forum.springsource.org/showthread.php?t=73677
のみ未解決の問題は認証時と実行時にJMXクライアントがサーバーへの同じ接続を使用して作成する方法であります安全な操作。
<bean id="serverConnector" class="org.springframework.jmx.support.ConnectorServerFactoryBean">
<property name="objectName" value="connector:name=rmi" />
<property name="serviceUrl" value="service:jmx:rmi:///jndi/rmi://:9875/jmxrmi" />
<property name="environment">
<map>
<entry key="jmx.remote.x.password.file" value="C:\Java\jdk1.7.0_79\jre\lib\management\jmxremote.password" />
<entry key="jmx.remote.x.access.file" value="C:\Java\jdk1.7.0_79\jre\lib\management\jmxremote.access" />
</map>
</property>
</bean>
あなたの答えにいくつかの説明を教えてください。 – bish
あなたのコードのOPにいくつかの説明を入れてください。 –
SpringConfigあなたがアクセス&パスワードファイル を見ることができます
<bean id="annotationTestMBean" class="com.greenline.appservice.web.bean.AnnotationTestMBean"/>
<!-- Spring JMX 配置 begin -->
<bean id="registry" class="org.springframework.remoting.rmi.RmiRegistryFactoryBean">
<property name="port" value="9875" />
<property name="alwaysCreate" value="true" />
</bean>
<bean id="serverConnector" class="org.springframework.jmx.support.ConnectorServerFactoryBean">
<property name="objectName" value="connector:name=rmi" />
<property name="serviceUrl" value="service:jmx:rmi:///jndi/rmi://192.168.214.63:9875/myconnector" />
<!--jmxmp协议
<property name="objectName" value="connector:name=jmxmp" />
<property name="serviceUrl" value="service:jmx:jmxmp://192.168.214.63:9875" />
-->
<property name="environment">
<!-- the following is only valid when the sun jmx implementation is used -->
<map>
<entry key="jmx.remote.x.password.file" value="C:\Java\jdk1.7.0_79\jre\lib\management\jmxremote.password" />
<entry key="jmx.remote.x.access.file" value="C:\Java\jdk1.7.0_79\jre\lib\management\jmxremote.access" />
</map>
</property>
</bean>
<context:mbean-export registration="replaceExisting"/>
<!-- Spring JMX 配置 end-->
JDK_PATH \ JRE \ libに\管理\ jmxremote.password JDK_PATH \ JRE \ libに\管理\は、jmxremote.access
JMXとSpring Part1-3 http://www.javacodegeeks.com/2012/07/jmx-and-spring-part-1.html
oracl eリモート管理アプリケーション(jmx) http://docs.oracle.com/cd/E19698-01/816-7609/6mdjrf861/index.html
- 1. Spring JMXに似たJMXエクスポートフレームワークエクスポーター
- 2. mocking authentication spring security
- 3. Springの@ManagedOperationの名前JMX
- 4. tomcatとspringのアプリケーションでアクティブなjmx
- 5. JMX for Spring:スレッドセーフであるMBeanServerConnectionFactoryBean
- 6. Spring JMXアノテーションでオブジェクトをエクスポートする
- 7. JMX Notifications design
- 8. React Authentication
- 9. JMX-Spring - 'JMXNotification'はいつ放映されますか?
- 10. Spring 2.5.6 JMX NotificationPublisher呼び出しNPEをスローする
- 11. JMX/visualvm経由でSpringバッチジョブを起動できますか?
- 12. Spring JMX NotificationListenerを作成できません
- 13. spring integration jmx weblogicとの接続に関する問題12.1.2
- 14. Spring @ManagedNotificationアノテーションを使用してJMXノーティフィケーションを生成する例
- 15. Springのehcache実装でJMXを設定しますか?
- 16. SpringブートアプリケーションでHikariCPにJMX MBeanを使用するには?
- 17. JMXクライアントセッション
- 18. jmeterスプリング・ブート・アクチュエータjmxモニター
- 19. twitter oath authentication android
- 20. authentication Facebook ad api
- 21. respoke api authentication error
- 22. openid authentication simple consumer
- 23. Slim Basic Authentication
- 24. TTImageView with authentication
- 25. Enterprise bot with authentication
- 26. Flask Tacacs + authentication
- 27. Qlik CURL with Authentication
- 28. passportjs authentication failed
- 29. wso2iot mqtt authentication
- 30. Facebook api authentication PHP
これはあまりにも曖昧です。もしあなたが無視されたくないのであれば、それ以上のことをする必要があります。 – skaffman