[jboss-user] [JBoss Tools (users)] - Wrong JBossTools Entity Generation on DB Table Name with Und

kabil do-not-reply at jboss.com
Thu Dec 18 19:00:34 EST 2008


Hi,
For about a week I worked on a Seam Web Project which uses a mysql db in which table names include underscore like o_test_test_test_test.
When I generate entities from eclipse, it generates all files but when I try to execute application, it says like: 

Property 'oTestTestTestTest' not found on type org.domain.testseam.session.OTestTestTestTestList_$$_javassist_1

After trying an other sample like otesttesttesttest table Generation creates correct files and web application runs normally.

My Environment is:
  Eclipse Europa Winter
  JBossTools 2.1.1.GA
  JBoss Seam 2.1.0.SP1
  MySQL 5.0.67
  JBoss AS 4.2.3 GA

SQL file for DB is below, I would also like to add project in here.

-- MySQL dump 10.11
--
-- Host: localhost    Database: sixtmin
-- ------------------------------------------------------
-- Server version	5.0.67-community-nt

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `o_test_test_test_test`
--

DROP TABLE IF EXISTS `o_test_test_test_test`;
SET @saved_cs_client     = @@character_set_client;
SET character_set_client = utf8;
CREATE TABLE `o_test_test_test_test` (
  `id` int(10) unsigned NOT NULL auto_increment,
  `namewer` varchar(45) NOT NULL,
  PRIMARY KEY  (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
SET character_set_client = @saved_cs_client;

--
-- Dumping data for table `o_test_test_test_test`
--

LOCK TABLES `o_test_test_test_test` WRITE;
/*!40000 ALTER TABLE `o_test_test_test_test` DISABLE KEYS */;
INSERT INTO `o_test_test_test_test` VALUES (1,'test'),(2,'test2');
/*!40000 ALTER TABLE `o_test_test_test_test` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2008-12-18 23:58:48



View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4197482#4197482

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4197482



More information about the jboss-user mailing list