java checkstyle,禁用特定Java包的所有checkstyle检查
I have two packages namelycom/mydomain/abc/delegate/xyz/jaxws/managedand com/mydomain/abc/xyz/jaxws/managedI require checkstyle to be disabled only for the second package as these holds proxy classes
I have two packages namely
com/mydomain/abc/delegate/xyz/jaxws/managed
and com/mydomain/abc/xyz/jaxws/managed
I require checkstyle to be disabled only for the second package as these holds proxy classes that are autogenerated.
I use a suppression.xml as shown below
/p>
"-//Puppy Crawl//DTD Suppressions 1.1//EN"
"suppressions_1_1.dtd">
Please note the first suppression for disabling JavadocPackage check works fine but the second one does not. I am afraid that my regex for selecting the package might be wrong. Any help is much appreciated.
To state my requirements with an example:
The criteria for selection is that the package name should end in jaxws.managed but should not contain delegate in package name. More over delegate should come before jaxws.managed in the package name:
eg: checktyle checks in package com.mycomany.delegate.service.jaxws.managed must be enabled while that in com.mycompany.abc.service.jaxws.service must be disabled and it is to be noted that I do not know all the pakages names upfront except for this pattern.
Thanks and Regards
Sibi
解决方案
Just use the suppression:
Alternatively, I would recommend only passing the files you want checked to Checkstyle. For example, if you are using ANT, use a to specify the files to process, and use to specify files to ignore.
For example:
魔乐社区(Modelers.cn) 是一个中立、公益的人工智能社区,提供人工智能工具、模型、数据的托管、展示与应用协同服务,为人工智能开发及爱好者搭建开放的学习交流平台。社区通过理事会方式运作,由全产业链共同建设、共同运营、共同享有,推动国产AI生态繁荣发展。
更多推荐


所有评论(0)