走在前面
VMware 提供培训和认证,以加速您的进步。
了解更多经过数月的开发,我很自豪地宣布发布 Hyperic 4.5。在此版本中,我们将 Hyperic 从运行在 JBoss 上的 EJB 应用程序迁移到运行在 Tomcat 上的 Spring Web 应用程序。详细的迁移步骤在我的 Hyperic 从 EJB 迁移到 Spring 的案例研究 中进行了介绍,该案例研究最初是在最近的 SpringOne 2GX 上发表的。在这篇文章中,我想重点介绍一下我对转换的一些最喜欢的方面。
转换后,我们能够利用 Spring 的集成测试支持来测试我们转换后的 EJB 的新服务层及其底层的 DAO。只需添加几个注释,我们就能在不到 30 秒的时间内引导我们的整个应用程序上下文,并在专用的事务中运行每个测试方法,并在测试结束时自动回滚。此支持被证明非常有价值,它使我们能够分别将开源和企业代码库中的测试覆盖率快速提高 18% 和 12%。
@Transactional
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = "classpath*:META-INF/spring/*-context.xml")
public class AppdefManagerTest {
@Autowired
private AppdefManager appdefManager;
@Before
public void setUp() throws Exception {
createPlatformType("TestPlatform", "test");
}
@Test
public void testGetControllablePlatformTypes() throws Exception {
Map<String, AppdefEntityID> platformTypes = appdefManager
.getControllablePlatformTypes(subject);
assertEquals(1, platformTypes.size());
assertEquals("TestPlatform", platformTypes.keySet().iterator().next());
}
}
public void publishMessage(String name, Serializable sObj) {
TopicConnection conn = null;
TopicSession session = null;
if (_ic == null)
_ic = new InitialContext();
if (_factory == null)
_factory = _ic.lookup(CONN_FACTORY_JNDI);
TopicConnectionFactory tFactory = (TopicConnectionFactory) _factory;
Topic topic = getTopic(name);
if (topic != null) {
// Now create a connection to send a message
if (_tConn != null)
conn = _tConn;
else
conn = tFactory.createTopicConnection();
if (conn == null)
_log.error("TopicConnection cannot be created");
if (_tSession != null)
session = _tSession;
else
session = conn.createTopicSession(false,
Session.AUTO_ACKNOWLEDGE);
// Create a publisher and publish the message
TopicPublisher publisher = session.createPublisher(topic);
ObjectMessage msg = session.createObjectMessage();
msg.setObject(sObj);
publisher.publish(msg);
...
}
public void publishMessage(String name, Serializable sObj) {
eventsJmsTemplate.convertAndSend(name, sObj);
}
public int getServicesCount(AuthzSubject subject) {
Statement stmt = null;
ResultSet rs = null;
Integer subjectId = subject.getId();
try {
Connection conn = getDBConn();
String sql = "SELECT COUNT(SVC.ID) FROM TBL_SERVICE";
stmt = conn.createStatement();
rs = stmt.executeQuery(sql);
if (rs.next()) {
return rs.getInt(1);
}
} catch (SQLException e) {
log.error("Caught SQL Exception finding Services by type: " + e, e);
throw new SystemException(e);
} finally {
DBUtil.closeJDBCObjects(LOG_CTX, null, stmt, rs);
}
return 0;
}
public int getServicesCount(AuthzSubject subject) {
return jdbcTemplate.queryForInt("SELECT COUNT(SVC.ID) FROM TBL_SERVICE");
}
这是一个相当不错的减肥计划!仅仅通过转换为 Spring 并且不更改任何功能,我们就将开源和企业代码库都减少了大约 7%。
这些只是在此版本中切换到 Spring 和 Tomcat 提供的众多好处中的一小部分。在一个博客文章中列出所有好处实在太多了!
此版本还包含对 VMware vFabric 平台三项服务的监控和管理,包括 vFabric GemFire 6.5 分布式缓存系统、RabbitMQ 企业消息系统,以及本周发布的新 vFabric tc Server 2.1 Java 运行时服务器。对 vFabric tc Server 的支持存在于 Hyperic 的先前版本中;但是,在 4.5 中,插件现在与 Hyperic 发行版捆绑在一起,不再是单独下载。请关注未来博客文章中有关监控 GemFire 和 RabbitMQ 的更多信息。
在迁移过程中,我们还抓住了机会,将我们的代码库从 subversion 迁移到 git。要从 git 代码库下载源代码,请访问 http://git.springsource.org/hq。我们还将构建系统从 ant 切换到 maven。现在,开发自定义插件或功能所需的所有 Hyperic 模块都可以从我们的 maven 存储库下载:http://maven.hyperic.org/release。