摘要:
因为DriverManagerDataSource只要有连接就新建一个connection,根本没有连接池的作用,所以在访问量大,并发的情况下表现很差。 所以用支持连接池的c3p0来替代,在application.xml替换原来的 com.my... 阅读全文
摘要:
因为DriverManagerDataSource只要有连接就新建一个connection,根本没有连接池的作用,所以在访问量大,并发的情况下表现很差。 所以用支持连接池的c3p0来替代,在application.xml替换原来的 com.my... 阅读全文
摘要:
# Set root logger level to WARN and append to stdoutlog4j.rootLogger=WARN, stdout, errorlog4j.appender.stdout=org.apache.log4j.ConsoleAppenderlog4j.... 阅读全文
摘要:
在实际开发过程中,涉及到向mysql数据表中insert tweet,很多情况下会报错: 1 org.hibernate.exception.GenericJDBCException: Could not execute JDBC batch update 2 3 at org... 阅读全文
摘要:
在使用Hibernate处理复杂的查询语句时,譬如: select tags.text from Tweet tweet inner join tweet.tags tags on tweet.id=tags.tweetId and tweet.keyword=:keyword and tags... 阅读全文
|