ok, sorry
There were a link to a not existing page..
// link to a page
| html.append("<-- Page Linking --><br/>");
| PortalNode thisNode = req.getPortalNode().getParent(); // will return this Page as a node.
| PortalNode linkToNode = thisNode.resolve("../Page");
| PortalNodeURL pageURL = resp.createRenderURL(linkToNode);
| html.append("Page: " + linkToNode.getName() + " -> ");
| html.append("<a href=\"" + pageURL.toString() + "\">" + linkToNode.getName() + "</a>");
|
too n00b.. :)
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3975972#3975972
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3975972
please change the field type to tinyint(1), and try again:)
Hibernate maps the java Boolean data to bit(1) in MySQL, which should uses tinyint(1) as the type.
There are 4 fields need to change:
alter table jbp_instance modify modifiable tinyint(1) not null;
alter table jbp_portlet_state_entry modify read_only tinyint(1) not null;
alter table jbp_users modify jbp_viewrealemail tinyint(1);
alter talbe jbp_users modify jbp_enabled tinyint(1);
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3975968#3975968
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3975968