Book Image

Getting Started with Hazelcast, Second Edition

By : Matthew Johns
Book Image

Getting Started with Hazelcast, Second Edition

By: Matthew Johns

Overview of this book

Table of Contents (19 chapters)
Getting Started with Hazelcast Second Edition
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Management center


This is used to delegate to a deployed instance of Hazelcast Management Center, as shown in the following code:

<management-center enabled="true" update-interval="5">
 http://manager-center-host:8080/mancenter
</management-center>

ManagementCenterConfig mmc = config.getManagementCenterConfig();
mmc.setUrl("http://manager-center-host:8080/mancenter")
 .setUpdateInterval(5).setEnabled(true);