开发者

Performasure and hibernate

开发者 https://www.devze.com 2023-01-08 03:21 出处:网络
I have some pojos, which are mapped to a tables in database. When I deploy my code into performance tuning environment, I receive bunch of org.hibernate.MappingException due to $performasure_j2eeInfo

I have some pojos, which are mapped to a tables in database.

When I deploy my code into performance tuning environment, I receive bunch of org.hibernate.MappingException due to $performasure_j2eeInfo is added to them by PerformaSure tool.

Is there a way, I can configure my hibernate context file, so this field mapping will ignore mapping error?

SOLVED: PerformaSure support advised me to put a specific configuration key, to show my pojos to PS and put them in ignored state. I don't remember a correct solution now, but开发者_高级运维 you can find it somewhere online


I've been able to get around the issue by modifying the instrumentation.config file under the /config/agent-orderride directory.

Edit the SafeModeClasses entry in that file to include a list of specific classes or packages.

SafeModeClasses = ClassList(
    include com\.mycompany\.package\..*\.Foo\,
    include com\.mycompany\.otherpackage\..*\./
);

Check out page 89 of the documentation here: http://edocs.quest.com/foglight/558/files/CartridgeForJavaEE_Install.pdf

0

精彩评论

暂无评论...
验证码 换一张
取 消