Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 jstl 中使用 DynamicAttribute。它可能会捕获所有未在 tld 中声明的属性。有没有办法只为某些不存在的属性生成编译错误?
假设我想禁止使用foo="bar"属性,但允许动态使用HTML 5 数据属性规范中指定的任何字符串data-*="bar"。*如果没有这样的功能,我将如何使用当前的 java jstl 规范实现相同的结果?
foo="bar"
data-*="bar"
*
我认为这个功能不可能实现,如果我错了,鼓励任何人回答,然后我会接受。