com.j2mvc.framework.mapping.JSONObjectStr Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of j2mvc-framework-app Show documentation
Show all versions of j2mvc-framework-app Show documentation
强烈建议使用J2mvc 2.1以后的版本。
version 2.1.01
1.更换JSON依赖包.
version 2.1.02
1.移除com.j2mvc.StringUtils.getUtf8()方法调用.
更改为getCharset()
version 2.1.03
1.更新JNDI连接设置
version 2.1.04
1.修改works.xml配置url-pkg-prefixes改为pkg
package com.j2mvc.framework.mapping;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
/**
*
* 字段对象注解类
*
* 2014-2-24 创建@杨朔
*/
@Retention(RetentionPolicy.RUNTIME)
public @interface JSONObjectStr {
// 表名
public String value();
}