热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

javajpa自动生成,SpringBootJPA代码自动生成其三

之前说过怎么生成,可以参考这里可以一键生成entity、service、repository类了。这个是对生成的内容进行扩展,在写一些基础、公共的组件时

之前说过怎么生成,可以参考这里可以一键生成entity、service、repository类了。

这个是对生成的内容进行扩展,在写一些基础、公共的组件时,不太希望使用lombok注解,反而需要最原始的get、set方法,这个就是加上可以生成get、set方法的配置。顺便加上了注释。

先看看新的实体类

不使用lombok

package com.example.genpojodemo.entity;

import javax.persistence.*;

/**

* 用户表

*/

@Entity

@Table(name = "user")

public class User {

/**

* id

* default value: null

*/

@Id

@Column(name = "id", nullable = false, length = 20)

private Long id;

/**

* 用户名

* default value: 'a'

*/

@Column(name = "username", nullable = true, length = 255)

private String username;

/**

* 密码

* default value: 'b'

*/

@Column(name = "password", nullable = true, length = 255)

private String password;

/**

* 盐

* default value: 'b'

*/

@Column(name = "salt", nullable = true, length = 255)

private String salt;

/**

* 生成时间

* default value: CURRENT_TIMESTAMP(6)

*/

@Column(name = "create_time", nullable = true, length = 6)

private java.util.Date createTime;

public Long getId() {

return this.id;

}

public void setId(Long id) {

this.id = id;

}

public String getUsername() {

return this.username;

}

public void setUsername(String username) {

this.username = username;

}

public String getPassword() {

return this.password;

}

public void setPassword(String password) {

this.password = password;

}

public String getSalt() {

return this.salt;

}

public void setSalt(String salt) {

this.salt = salt;

}

public java.util.Date getCreateTime() {

return this.createTime;

}

public void setCreateTime(java.util.Date createTime) {

this.createTime = createTime;

}

}

使用lombok

package com.example.genpojodemo.entity;

import lombok.Data;

import javax.persistence.*;

/**

* 用户表

*/

@Data

@Entity

@Table(name = "user")

public class User {

/**

* id

* default value: null

*/

@Id

@Column(name = "id", nullable = false, length = 20)

private Long id;

/**

* 用户名

* default value: 'a'

*/

@Column(name = "username", nullable = true, length = 255)

private String username;

/**

* 密码

* default value: 'b'

*/

@Column(name = "password", nullable = true, length = 255)

private String password;

/**

* 盐

* default value: 'b'

*/

@Column(name = "salt", nullable = true, length = 255)

private String salt;

/**

* 生成时间

* default value: CURRENT_TIMESTAMP(6)

*/

@Column(name = "create_time", nullable = true, length = 6)

private java.util.Date createTime;

}

来看看Groovy内容

import com.intellij.database.model.DasTable

import com.intellij.database.model.ObjectKind

import com.intellij.database.util.Case

import com.intellij.database.util.DasUtil

config = [

impSerializable : false,

extendBaseEntity : false,

extendBaseService: false,

useLombok : true, // 不使用会生成get、set方法

// 不生成哪个就注释哪个

generateItem : [

"Entity",

// "Service",

// "Repository",

// "RepositoryCustom",

// "RepositoryImpl",

]

]

baseEntityPackage = "com.yija.project.framework.base.BaseEntity"

baseServicePackage = "com.yija.project.framework.base.BaseService"

baseEntityProperties = ["id", "createDate", "lastModifiedDate", "version"]

typeMapping = [

(~/(?i)bool|boolean|tinyint/) : "Boolean",

(~/(?i)bigint/) : "Long",

(~/int/) : "Integer",

(~/(?i)float|double|decimal|real/): "Double",

(~/(?i)datetime|timestamp/) : "java.util.Date",

(~/(?i)date/) : "java.sql.Date",

(~/(?i)time/) : "java.sql.Time",

(~/(?i)/) : "String"

]

FILES.chooseDirectoryAndSave("Choose directory", "Choose where to store generated files") { dir ->

SELECTION.filter {

it instanceof DasTable && it.getKind() == ObjectKind.TABLE

}.each {

generate(it, dir)

}

}

// 生成对应的文件

def generate(table, dir) {

def entityPath = "${dir.toString()}\\entity",

servicePath = "${dir.toString()}\\service",

repPath = "${dir.toString()}\\repository",

repImpPath = "${dir.toString()}\\repository\\impl",

controllerPath = "${dir.toString()}\\controller"

mkdirs([entityPath, servicePath, repPath, repImpPath, controllerPath])

System.out.println(table.getName())

def entityName = javaName(table.getName(), true)

def fields = calcFields(table)

def basePackage = clacBasePackage(dir)

if (isGenerate("Entity")) {

genUTF8File(entityPath, "${entityName}.java").withPrintWriter { out -> genEntity(out, table, entityName, fields, basePackage) }

}

if (isGenerate("Service")) {

genUTF8File(servicePath, "${entityName}Service.java").withPrintWriter { out -> genService(out, table, entityName, fields, basePackage) }

}

if (isGenerate("Repository")) {

genUTF8File(repPath, "${entityName}Repository.java").withPrintWriter { out -> genRepository(out, table, entityName, fields, basePackage) }

}

if (isGenerate("RepositoryCustom")) {

genUTF8File(repPath, "${entityName}RepositoryCustom.java").withPrintWriter { out -> genRepositoryCustom(out, entityName, basePackage) }

}

if (isGenerate("RepositoryImpl")) {

genUTF8File(repImpPath, "${entityName}RepositoryImpl.java").withPrintWriter { out -> genRepositoryImpl(out, table, entityName, fields, basePackage) }

}

}

// 是否需要被生成

def isGenerate(itemName) {

config.generateItem.contains(itemName)

}

// 指定文件编码方式,防止中文注释乱码

def genUTF8File(dir, fileName) {

new PrintWriter(new OutputStreamWriter(new FileOutputStream(new File(dir, fileName)), "utf-8"))

}

// 生成每个字段

def genProperty(out, field) {

out.println ""

out.println "\t/**"

out.println "\t * ${field.comment}"

out.println "\t * default value: ${field.default}"

out.println "\t */"

// 默认表的第一个字段为主键

if (field.position == 1) {

out.println "\t@Id"

}

out.println "\t@Column(name = \"${field.colum}\", nullable = ${!field.isNotNull}, length = ${field.len})"

out.println "\tprivate ${field.type} ${field.name};"

}

// 生成get、get方法

def genGetSet(out, field) {

// get

out.println "\t"

out.println "\tpublic ${field.type} get${field.name.substring(0, 1).toUpperCase()}${field.name.substring(1)}() {"

out.println "\t\treturn this.${field.name};"

out.println "\t}"

// set

out.println "\t"

out.println "\tpublic void set${field.name.substring(0, 1).toUpperCase()}${field.name.substring(1)}(${field.type} ${field.name}) {"

out.println "\t\tthis.${field.name} = ${field.name};"

out.println "\t}"

}

// 生成实体类

def genEntity(out, table, entityName, fields, basePackage) {

out.println "package ${basePackage}.entity;"

out.println ""

if (config.extendBaseEntity) {

out.println "import $baseEntityPackage;"

}

if (config.useLombok) {

out.println "import lombok.Data;"

out.println ""

}

if (config.impSerializable) {

out.println "import java.io.Serializable;"

out.println ""

}

out.println "import javax.persistence.*;"

out.println ""

out.println "/**"

out.println " * ${table.getComment()}"

out.println " */"

if (config.useLombok) {

out.println "@Data"

}

out.println "@Entity"

out.println "@Table(name = \"${table.getName()}\")"

out.println "public class $entityName${config.extendBaseEntity ? " extends BaseEntity" : ""}${config.impSerializable ? " implements Serializable" : ""} {"

if (config.extendBaseEntity) {

fields = fields.findAll { it ->

!baseEntityProperties.any { it1 -> it1 == it.name }

}

}

fields.each() {

genProperty(out, it)

}

if (!config.useLombok) {

fields.each() {

genGetSet(out, it)

}

}

out.println "}"

}

// 生成Service

def genService(out, table, entityName, fields, basePackage) {

out.println "package ${basePackage}.service;"

out.println ""

out.println "import ${basePackage}.repository.${entityName}Repository;"

if (config.extendBaseService) {

out.println "import $baseServicePackage;"

out.println "import ${basePackage}.entity.$entityName;"

}

out.println "import org.springframework.stereotype.Service;"

out.println ""

out.println "import javax.annotation.Resource;"

out.println ""

out.println "@Service"

out.println "public class ${entityName}Service${config.extendBaseService ? " extends BaseService" : ""} {"

out.println ""

out.println "\t@Resource"

out.println "\tprivate ${entityName}Repository rep;"

out.println "}"

}

// 生成Repository

def genRepository(out, table, entityName, fields, basePackage) {

out.println "package ${basePackage}.repository;"

out.println ""

out.println "import ${basePackage}.entity.$entityName;"

out.println "import org.springframework.data.jpa.repository.JpaRepository;"

out.println ""

out.println "public interface ${entityName}Repository extends JpaRepository, ${entityName}RepositoryCustom {"

out.println ""

out.println "}"

}

// 生成RepositoryCustom

def genRepositoryCustom(out, entityName, basePackage) {

out.println "package ${basePackage}.repository;"

out.println ""

out.println "public interface ${entityName}RepositoryCustom {"

out.println ""

out.println "}"

}

// 生成RepositoryImpl

def genRepositoryImpl(out, table, entityName, fields, basePackage) {

out.println "package ${basePackage}.repository.impl;"

out.println ""

out.println "import ${basePackage}.repository.${entityName}RepositoryCustom;"

out.println "import org.springframework.stereotype.Repository;"

out.println ""

out.println "import javax.persistence.EntityManager;"

out.println "import javax.persistence.PersistenceContext;"

out.println ""

out.println "@Repository"

out.println "public class ${entityName}RepositoryImpl implements ${entityName}RepositoryCustom {"

out.println ""

out.println "\t@PersistenceContext"

out.println "\tprivate EntityManager em;"

out.println "}"

}

// 生成文件夹

def mkdirs(dirs) {

dirs.forEach {

def f = new File(it)

if (!f.exists()) {

f.mkdirs()

}

}

}

def clacBasePackage(dir) {

dir.toString()

.replaceAll("^.+\\\\src\\\\main\\\\java\\\\", "")

.replaceAll("\\\\", ".")

}

def isBaseEntityProperty(property) {

baseEntityProperties.find { it == property } != null

}

// 转换类型

def calcFields(table) {

DasUtil.getColumns(table).reduce([]) { fields, col ->

def spec = Case.LOWER.apply(col.getDataType().getSpecification())

def typeStr = typeMapping.find { p, t -> p.matcher(spec).find() }.value

fields += [[

name : javaName(col.getName(), false),

colum : col.getName(),

type : typeStr,

len : col.getDataType().toString().replaceAll("[^\\d]", ""),

default : col.getDefault(),

comment : col.getComment(),

isNotNull: col.isNotNull(),

position : col.getPosition(),

// getDefault : col.getDefault(),

// getParent : col.getParent(),

// getTable : col.getTable(),

// getDataType : col.getDataType(),

// isNotNull : col.isNotNull(),

// getWeight : col.getWeight(),

// getDocumentation : col.getDocumentation(),

// getTableName : col.getTableName(),

// getName : col.getName(),

// getLanguage : col.getLanguage(),

// getTypeName : col.getTypeName(),

// isDirectory : col.isDirectory(),

// isValid : col.isValid(),

// getComment : col.getComment(),

// getText : col.getText(),

// getDeclaration : col.getDeclaration(),

// getPosition : col.getPosition(),

// canNavigate : col.canNavigate(),

// isWritable : col.isWritable(),

// getIcon : col.getIcon(),

// getManager : col.getManager(),

// getDelegate : col.getDelegate(),

// getChildren : col.getChildren(),

// getKind : col.getKind(),

// isCaseSensitive : col.isCaseSensitive(),

// getProject : col.getProject(),

// getDataSource : col.getDataSource(),

// getVirtualFile : col.getVirtualFile(),

// getMetaData : col.getMetaData(),

// canNavigateToSource : col.canNavigateToSource(),

// getDisplayOrder : col.getDisplayOrder(),

// getDasParent : col.getDasParent(),

// getLocationString : col.getLocationString(),

// getDependences : col.getDependences(),

// getBaseIcon : col.getBaseIcon(),

// getNode : col.getNode(),

// getTextLength : col.getTextLength(),

// getFirstChild : col.getFirstChild(),

// getLastChild : col.getLastChild(),

// getNextSibling : col.getNextSibling(),

// getTextOffset : col.getTextOffset(),

// getPrevSibling : col.getPrevSibling(),

// getPresentation : col.getPresentation(),

// isPhysical : col.isPhysical(),

// getTextRange : col.getTextRange(),

// getPresentableText : col.getPresentableText(),

// textToCharArray : col.textToCharArray(),

// getStartOffsetInParent: col.getStartOffsetInParent(),

// getContext : col.getContext(),

// getUseScope : col.getUseScope(),

// getResolveScope : col.getResolveScope(),

// getReferences : col.getReferences(),

// getReference : col.getReference(),

// getContainingFile : col.getContainingFile(),

// getOriginalElement : col.getOriginalElement(),

// getNavigationElement : col.getNavigationElement(),

// getUserDataString : col.getUserDataString(),

// isUserDataEmpty : col.isUserDataEmpty(),

// getDbParent : col.getDbParent(),

]]

}

}

def javaName(str, capitalize) {

def s &#61; str.split(/(?<&#61;[^\p{IsLetter}])/).collect { Case.LOWER.apply(it).capitalize() }

.join("").replaceAll(/[^\p{javaJavaIdentifierPart}]/, "_").replaceAll(/_/, "")

capitalize || s.length() &#61;&#61; 1 ? s : Case.LOWER.apply(s[0]) &#43; s[1..-1]

}

下面注释的一大堆东西&#xff0c;就是可以获取信息的方法&#xff0c;有兴趣可以自己试试。

今天(2019/3/25)发现枚举类型不需要长度&#xff0c;调整了下生成代码&#xff0c;

import com.intellij.database.model.DasTable

import com.intellij.database.model.ObjectKind

import com.intellij.database.util.Case

import com.intellij.database.util.DasUtil

config &#61; [

impSerializable : true,

extendBaseEntity : true,

extendBaseService: true,

useLombok : true, // 不使用会生成get、set方法

// 不生成哪个就注释哪个

generateItem : [

"Entity",

// "Service",

// "Repository",

// "RepositoryCustom",

// "RepositoryImpl",

]

]

baseEntityPackage &#61; "com.yija.project.framework.base.BaseEntity"

baseServicePackage &#61; "com.yija.project.framework.base.BaseService"

baseEntityProperties &#61; ["id", "createDate", "lastModifiedDate", "version"]

typeMapping &#61; [

(~/(?i)bool|boolean|tinyint/) : "Boolean",

(~/(?i)bigint/) : "Long",

(~/int/) : "Integer",

(~/(?i)float|double|decimal|real/): "Double",

(~/(?i)datetime|timestamp/) : "java.util.Date",

(~/(?i)date/) : "java.sql.Date",

(~/(?i)time/) : "java.sql.Time",

(~/(?i)/) : "String"

]

FILES.chooseDirectoryAndSave("Choose directory", "Choose where to store generated files") { dir ->

SELECTION.filter {

it instanceof DasTable && it.getKind() &#61;&#61; ObjectKind.TABLE

}.each {

generate(it, dir)

}

}

// 生成对应的文件

def generate(table, dir) {

def entityPath &#61; "${dir.toString()}\\entity",

servicePath &#61; "${dir.toString()}\\service",

repPath &#61; "${dir.toString()}\\repository",

repImpPath &#61; "${dir.toString()}\\repository\\impl",

controllerPath &#61; "${dir.toString()}\\controller"

mkdirs([entityPath, servicePath, repPath, repImpPath, controllerPath])

System.out.println(table.getName())

def entityName &#61; javaName(table.getName(), true)

def fields &#61; calcFields(table)

def basePackage &#61; clacBasePackage(dir)

if (isGenerate("Entity")) {

genUTF8File(entityPath, "${entityName}.java").withPrintWriter { out -> genEntity(out, table, entityName, fields, basePackage) }

}

if (isGenerate("Service")) {

genUTF8File(servicePath, "${entityName}Service.java").withPrintWriter { out -> genService(out, table, entityName, fields, basePackage) }

}

if (isGenerate("Repository")) {

genUTF8File(repPath, "${entityName}Repository.java").withPrintWriter { out -> genRepository(out, table, entityName, fields, basePackage) }

}

if (isGenerate("RepositoryCustom")) {

genUTF8File(repPath, "${entityName}RepositoryCustom.java").withPrintWriter { out -> genRepositoryCustom(out, entityName, basePackage) }

}

if (isGenerate("RepositoryImpl")) {

genUTF8File(repImpPath, "${entityName}RepositoryImpl.java").withPrintWriter { out -> genRepositoryImpl(out, table, entityName, fields, basePackage) }

}

}

// 是否需要被生成

def isGenerate(itemName) {

config.generateItem.contains(itemName)

}

// 指定文件编码方式&#xff0c;防止中文注释乱码

def genUTF8File(dir, fileName) {

new PrintWriter(new OutputStreamWriter(new FileOutputStream(new File(dir, fileName)), "utf-8"))

}

// 生成每个字段

def genProperty(out, field) {

out.println ""

out.println "\t/**"

out.println "\t * ${field.comment}"

out.println "\t * default value: ${field.default}"

out.println "\t */"

// 默认表的第一个字段为主键

if (field.position &#61;&#61; 1) {

out.println "\t&#64;Id"

}

// 枚举不需要长度

out.println "\t&#64;Column(name &#61; \"${field.colum}\", nullable &#61; ${!field.isNotNull}${field.dataType &#61;&#61; "enum" ? "" : ", length &#61; $field.len"})"

out.println "\tprivate ${field.type} ${field.name};"

}

// 生成get、get方法

def genGetSet(out, field) {

// get

out.println "\t"

out.println "\tpublic ${field.type} get${field.name.substring(0, 1).toUpperCase()}${field.name.substring(1)}() {"

out.println "\t\treturn this.${field.name};"

out.println "\t}"

// set

out.println "\t"

out.println "\tpublic void set${field.name.substring(0, 1).toUpperCase()}${field.name.substring(1)}(${field.type} ${field.name}) {"

out.println "\t\tthis.${field.name} &#61; ${field.name};"

out.println "\t}"

}

// 生成实体类

def genEntity(out, table, entityName, fields, basePackage) {

out.println "package ${basePackage}.entity;"

out.println ""

if (config.extendBaseEntity) {

out.println "import $baseEntityPackage;"

}

if (config.useLombok) {

out.println "import lombok.Data;"

out.println ""

}

if (config.impSerializable) {

out.println "import java.io.Serializable;"

out.println ""

}

out.println "import javax.persistence.*;"

out.println ""

out.println "/**"

out.println " * ${table.getComment()}"

out.println " */"

if (config.useLombok) {

out.println "&#64;Data"

}

out.println "&#64;Entity"

out.println "&#64;Table(name &#61; \"${table.getName()}\")"

out.println "public class $entityName${config.extendBaseEntity ? " extends BaseEntity" : ""}${config.impSerializable ? " implements Serializable" : ""} {"

if (config.extendBaseEntity) {

fields &#61; fields.findAll { it ->

!baseEntityProperties.any { it1 -> it1 &#61;&#61; it.name }

}

}

fields.each() {

genProperty(out, it)

}

if (!config.useLombok) {

fields.each() {

genGetSet(out, it)

}

}

out.println "}"

}

// 生成Service

def genService(out, table, entityName, fields, basePackage) {

out.println "package ${basePackage}.service;"

out.println ""

out.println "import ${basePackage}.repository.${entityName}Repository;"

if (config.extendBaseService) {

out.println "import $baseServicePackage;"

out.println "import ${basePackage}.entity.$entityName;"

}

out.println "import org.springframework.stereotype.Service;"

out.println ""

out.println "import javax.annotation.Resource;"

out.println ""

out.println "&#64;Service"

out.println "public class ${entityName}Service${config.extendBaseService ? " extends BaseService" : ""} {"

out.println ""

out.println "\t&#64;Resource"

out.println "\tprivate ${entityName}Repository rep;"

out.println "}"

}

// 生成Repository

def genRepository(out, table, entityName, fields, basePackage) {

out.println "package ${basePackage}.repository;"

out.println ""

out.println "import ${basePackage}.entity.$entityName;"

out.println "import org.springframework.data.jpa.repository.JpaRepository;"

out.println ""

out.println "public interface ${entityName}Repository extends JpaRepository, ${entityName}RepositoryCustom {"

out.println ""

out.println "}"

}

// 生成RepositoryCustom

def genRepositoryCustom(out, entityName, basePackage) {

out.println "package ${basePackage}.repository;"

out.println ""

out.println "public interface ${entityName}RepositoryCustom {"

out.println ""

out.println "}"

}

// 生成RepositoryImpl

def genRepositoryImpl(out, table, entityName, fields, basePackage) {

out.println "package ${basePackage}.repository.impl;"

out.println ""

out.println "import ${basePackage}.repository.${entityName}RepositoryCustom;"

out.println "import org.springframework.stereotype.Repository;"

out.println ""

out.println "import javax.persistence.EntityManager;"

out.println "import javax.persistence.PersistenceContext;"

out.println ""

out.println "&#64;Repository"

out.println "public class ${entityName}RepositoryImpl implements ${entityName}RepositoryCustom {"

out.println ""

out.println "\t&#64;PersistenceContext"

out.println "\tprivate EntityManager em;"

out.println "}"

}

// 生成文件夹

def mkdirs(dirs) {

dirs.forEach {

def f &#61; new File(it)

if (!f.exists()) {

f.mkdirs()

}

}

}

def clacBasePackage(dir) {

dir.toString()

.replaceAll("^.&#43;\\\\src\\\\main\\\\java\\\\", "")

.replaceAll("\\\\", ".")

}

def isBaseEntityProperty(property) {

baseEntityProperties.find { it &#61;&#61; property } !&#61; null

}

// 转换类型

def calcFields(table) {

DasUtil.getColumns(table).reduce([]) { fields, col ->

def spec &#61; Case.LOWER.apply(col.getDataType().getSpecification())

def typeStr &#61; typeMapping.find { p, t -> p.matcher(spec).find() }.value

fields &#43;&#61; [[

name : javaName(col.getName(), false),

colum : col.getName(),

type : typeStr,

dataType : col.getDataType().toString().replaceAll(/\(.*\)/, "").toLowerCase(),

len : col.getDataType().toString().replaceAll(/[^\d]/, ""),

default : col.getDefault(),

comment : col.getComment(),

isNotNull: col.isNotNull(),

position : col.getPosition(),

// getDefault : col.getDefault(),

// getParent : col.getParent(),

// getTable : col.getTable(),

// getDataType : col.getDataType(),

// isNotNull : col.isNotNull(),

// getWeight : col.getWeight(),

// getDocumentation : col.getDocumentation(),

// getTableName : col.getTableName(),

// getName : col.getName(),

// getLanguage : col.getLanguage(),

// getTypeName : col.getTypeName(),

// isDirectory : col.isDirectory(),

// isValid : col.isValid(),

// getComment : col.getComment(),

// getText : col.getText(),

// getDeclaration : col.getDeclaration(),

// getPosition : col.getPosition(),

// canNavigate : col.canNavigate(),

// isWritable : col.isWritable(),

// getIcon : col.getIcon(),

// getManager : col.getManager(),

// getDelegate : col.getDelegate(),

// getChildren : col.getChildren(),

// getKind : col.getKind(),

// isCaseSensitive : col.isCaseSensitive(),

// getProject : col.getProject(),

// getDataSource : col.getDataSource(),

// getVirtualFile : col.getVirtualFile(),

// getMetaData : col.getMetaData(),

// canNavigateToSource : col.canNavigateToSource(),

// getDisplayOrder : col.getDisplayOrder(),

// getDasParent : col.getDasParent(),

// getLocationString : col.getLocationString(),

// getDependences : col.getDependences(),

// getBaseIcon : col.getBaseIcon(),

// getNode : col.getNode(),

// getTextLength : col.getTextLength(),

// getFirstChild : col.getFirstChild(),

// getLastChild : col.getLastChild(),

// getNextSibling : col.getNextSibling(),

// getTextOffset : col.getTextOffset(),

// getPrevSibling : col.getPrevSibling(),

// getPresentation : col.getPresentation(),

// isPhysical : col.isPhysical(),

// getTextRange : col.getTextRange(),

// getPresentableText : col.getPresentableText(),

// textToCharArray : col.textToCharArray(),

// getStartOffsetInParent: col.getStartOffsetInParent(),

// getContext : col.getContext(),

// getUseScope : col.getUseScope(),

// getResolveScope : col.getResolveScope(),

// getReferences : col.getReferences(),

// getReference : col.getReference(),

// getContainingFile : col.getContainingFile(),

// getOriginalElement : col.getOriginalElement(),

// getNavigationElement : col.getNavigationElement(),

// getUserDataString : col.getUserDataString(),

// isUserDataEmpty : col.isUserDataEmpty(),

// getDbParent : col.getDbParent(),

]]

}

}

def javaName(str, capitalize) {

def s &#61; str.split(/(?<&#61;[^\p{IsLetter}])/).collect { Case.LOWER.apply(it).capitalize() }

.join("").replaceAll(/[^\p{javaJavaIdentifierPart}]/, "_").replaceAll(/_/, "")

capitalize || s.length() &#61;&#61; 1 ? s : Case.LOWER.apply(s[0]) &#43; s[1..-1]

}



推荐阅读
  • DAO(Data Access Object)模式是一种用于抽象和封装所有对数据库或其他持久化机制访问的方法,它通过提供一个统一的接口来隐藏底层数据访问的复杂性。 ... [详细]
  • 原文网址:https:www.cnblogs.comysoceanp7476379.html目录1、AOP什么?2、需求3、解决办法1:使用静态代理4 ... [详细]
  • 在本文中,我们将探讨如何在Docker环境中高效地管理和利用数据库。首先,需要安装Docker Desktop以确保本地环境准备就绪。接下来,可以从Docker Hub中选择合适的数据库镜像,并通过简单的命令将其拉取到本地。此外,我们还将介绍如何配置和优化这些数据库容器,以实现最佳性能和安全性。 ... [详细]
  • 在Android应用开发中,实现与MySQL数据库的连接是一项重要的技术任务。本文详细介绍了Android连接MySQL数据库的操作流程和技术要点。首先,Android平台提供了SQLiteOpenHelper类作为数据库辅助工具,用于创建或打开数据库。开发者可以通过继承并扩展该类,实现对数据库的初始化和版本管理。此外,文章还探讨了使用第三方库如Retrofit或Volley进行网络请求,以及如何通过JSON格式交换数据,确保与MySQL服务器的高效通信。 ... [详细]
  • 提升Android开发效率:Clean Code的最佳实践与应用
    在Android开发中,提高代码质量和开发效率是至关重要的。本文介绍了如何通过Clean Code的最佳实践来优化Android应用的开发流程。以SQLite数据库操作为例,详细探讨了如何编写高效、可维护的SQL查询语句,并将其结果封装为Java对象。通过遵循这些最佳实践,开发者可以显著提升代码的可读性和可维护性,从而加快开发速度并减少错误。 ... [详细]
  • Spring Boot 中配置全局文件上传路径并实现文件上传功能
    本文介绍如何在 Spring Boot 项目中配置全局文件上传路径,并通过读取配置项实现文件上传功能。通过这种方式,可以更好地管理和维护文件路径。 ... [详细]
  • 本文介绍了在 Java 编程中遇到的一个常见错误:对象无法转换为 long 类型,并提供了详细的解决方案。 ... [详细]
  • 在多线程并发环境中,普通变量的操作往往是线程不安全的。本文通过一个简单的例子,展示了如何使用 AtomicInteger 类及其核心的 CAS 无锁算法来保证线程安全。 ... [详细]
  • com.hazelcast.config.MapConfig.isStatisticsEnabled()方法的使用及代码示例 ... [详细]
  • Java高并发与多线程(二):线程的实现方式详解
    本文将深入探讨Java中线程的三种主要实现方式,包括继承Thread类、实现Runnable接口和实现Callable接口,并分析它们之间的异同及其应用场景。 ... [详细]
  • 如何在Java中使用DButils类
    这期内容当中小编将会给大家带来有关如何在Java中使用DButils类,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。D ... [详细]
  • 第二十五天接口、多态
    1.java是面向对象的语言。设计模式:接口接口类是从java里衍生出来的,不是python原生支持的主要用于继承里多继承抽象类是python原生支持的主要用于继承里的单继承但是接 ... [详细]
  • 大类|电阻器_使用Requests、Etree、BeautifulSoup、Pandas和Path库进行数据抓取与处理 | 将指定区域内容保存为HTML和Excel格式
    大类|电阻器_使用Requests、Etree、BeautifulSoup、Pandas和Path库进行数据抓取与处理 | 将指定区域内容保存为HTML和Excel格式 ... [详细]
  • 属性类 `Properties` 是 `Hashtable` 类的子类,用于存储键值对形式的数据。该类在 Java 中广泛应用于配置文件的读取与写入,支持字符串类型的键和值。通过 `Properties` 类,开发者可以方便地进行配置信息的管理,确保应用程序的灵活性和可维护性。此外,`Properties` 类还提供了加载和保存属性文件的方法,使其在实际开发中具有较高的实用价值。 ... [详细]
  • 在Ubuntu系统中安装Android SDK的详细步骤及解决“Failed to fetch URL https://dlssl.google.com/”错误的方法
    在Ubuntu 11.10 x64系统中安装Android SDK的详细步骤,包括配置环境变量和解决“Failed to fetch URL https://dlssl.google.com/”错误的方法。本文详细介绍了如何在该系统上顺利安装并配置Android SDK,确保开发环境的稳定性和高效性。此外,还提供了解决网络连接问题的实用技巧,帮助用户克服常见的安装障碍。 ... [详细]
author-avatar
寒宝儿_____
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有