Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
logwire-bo-persistence
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
薛涛 Toby Xue
logwire-bo-persistence
Commits
cf451604
Commit
cf451604
authored
Dec 17, 2020
by
薛涛 Toby Xue
🆒
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#1971
parent
f80bd7c1
Pipeline
#4313
canceled with stages
Changes
24
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
24 changed files
with
609 additions
and
170 deletions
+609
-170
BoRelationBeanContainerBuilder.java
...n/java/logwire/web/bo/BoRelationBeanContainerBuilder.java
+23
-0
BoService.java
src/main/java/logwire/web/bo/BoService.java
+19
-1
BigIntegerFieldParser.java
...ava/logwire/web/bo/field/parse/BigIntegerFieldParser.java
+2
-8
BizArrayFieldParser.java
.../java/logwire/web/bo/field/parse/BizArrayFieldParser.java
+4
-5
BooleanFieldParser.java
...n/java/logwire/web/bo/field/parse/BooleanFieldParser.java
+2
-3
ChoiceFieldParser.java
...in/java/logwire/web/bo/field/parse/ChoiceFieldParser.java
+24
-0
DateTimeFieldParser.java
.../java/logwire/web/bo/field/parse/DateTimeFieldParser.java
+2
-3
DecimalFieldParser.java
...n/java/logwire/web/bo/field/parse/DecimalFieldParser.java
+2
-3
FieldParser.java
src/main/java/logwire/web/bo/field/parse/FieldParser.java
+20
-6
FieldParserUtil.java
...main/java/logwire/web/bo/field/parse/FieldParserUtil.java
+28
-6
ForeignKeyFieldParser.java
...ava/logwire/web/bo/field/parse/ForeignKeyFieldParser.java
+46
-0
IntegerFieldParser.java
...n/java/logwire/web/bo/field/parse/IntegerFieldParser.java
+2
-3
SmallIntegerFieldParser.java
...a/logwire/web/bo/field/parse/SmallIntegerFieldParser.java
+2
-3
StringFieldParser.java
...in/java/logwire/web/bo/field/parse/StringFieldParser.java
+2
-3
CreateOperationHandler.java
...n/java/logwire/web/bo/handler/CreateOperationHandler.java
+9
-2
BoModelBeanLoader.java
src/main/java/logwire/web/bo/loader/BoModelBeanLoader.java
+118
-35
BoRelationBeanDefinitionLoader.java
...logwire/web/bo/loader/BoRelationBeanDefinitionLoader.java
+162
-67
LoaderUtil.java
src/main/java/logwire/web/bo/loader/LoaderUtil.java
+15
-0
DefaultObjectOperationProvider.java
...gwire/web/bo/provider/DefaultObjectOperationProvider.java
+19
-0
DefaultTypeOperationProvider.java
...logwire/web/bo/provider/DefaultTypeOperationProvider.java
+2
-2
ObjectOperationInterceptor.java
...java/logwire/web/bo/proxy/ObjectOperationInterceptor.java
+64
-0
Proxy.java
src/main/java/logwire/web/bo/proxy/Proxy.java
+30
-6
TypeOperationInterceptor.java
...n/java/logwire/web/bo/proxy/TypeOperationInterceptor.java
+2
-2
Session.java
src/main/java/logwire/web/bo/session/Session.java
+10
-12
No files found.
src/main/java/logwire/web/bo/BoRelationBeanContainerBuilder.java
0 → 100644
View file @
cf451604
package
logwire
.
web
.
bo
;
import
logwire.core.resource.JavaBeanContainer
;
import
logwire.core.resource.JavaBeanContainerBuilder
;
import
logwire.core.resource.Util
;
import
logwire.web.bo.loader.BoRelationBeanDefinitionLoader
;
import
org.springframework.context.ApplicationContext
;
import
org.springframework.stereotype.Component
;
@Component
public
class
BoRelationBeanContainerBuilder
implements
JavaBeanContainerBuilder
{
public
static
final
String
CONTAINER_NAME
=
"BO_RELATION_CONTAINER"
;
@Override
public
JavaBeanContainer
build
(
ApplicationContext
applicationContext
)
{
return
new
JavaBeanContainer
(
Util
.
getExactBean
(
applicationContext
,
BoRelationBeanDefinitionLoader
.
class
));
}
@Override
public
String
getContainerName
()
{
return
CONTAINER_NAME
;
}
}
src/main/java/logwire/web/bo/BoService.java
View file @
cf451604
package
logwire
.
web
.
bo
;
package
logwire
.
web
.
bo
;
import
logwire.core.exceptions.ApplicationException
;
import
logwire.web.bo.proxy.Proxy
;
import
logwire.web.service.query.QueryService
;
import
logwire.web.service.query.QueryService
;
import
logwire.web.tenant.TenantProjectService
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Component
;
import
org.springframework.stereotype.Component
;
import
java.util.Map
;
@Component
@Component
public
class
BoService
{
public
class
BoService
{
@Autowired
@Autowired
QueryService
queryService
;
QueryService
queryService
;
@Autowired
TenantProjectService
tenantProjectService
;
public
Object
createBizObject
(
Class
clazz
)
{
Map
<
String
,
BoRelationDefinition
>
boRelationDefinitions
=
(
Map
<
String
,
BoRelationDefinition
>)
tenantProjectService
.
getCurrentProject
().
getBeansByContainerName
(
BoRelationBeanContainerBuilder
.
CONTAINER_NAME
);
BoRelationDefinition
boRelationDefinition
=
boRelationDefinitions
.
get
(
clazz
.
getName
());
if
(
boRelationDefinition
!=
null
)
{
try
{
return
Proxy
.
createObjectOperationProvider
(
boRelationDefinition
,
boRelationDefinitions
);
}
catch
(
IllegalAccessException
|
InstantiationException
e
)
{
throw
ApplicationException
.
wrap
(
e
);
}
}
return
null
;
}
}
}
src/main/java/logwire/web/bo/field/parse/BigIntegerFieldParser.java
View file @
cf451604
...
@@ -2,19 +2,13 @@ package logwire.web.bo.field.parse;
...
@@ -2,19 +2,13 @@ package logwire.web.bo.field.parse;
import
logwire.core.meta.model.fields.BigIntegerField
;
import
logwire.core.meta.model.fields.BigIntegerField
;
import
java.lang.annotation.Annotation
;
import
java.lang.reflect.Field
;
import
java.lang.reflect.Field
;
public
class
BigIntegerFieldParser
extends
FieldParser
<
BigIntegerField
>
{
public
class
BigIntegerFieldParser
extends
FieldParser
<
BigIntegerField
>
{
@Override
@Override
protected
BigIntegerField
newField
(
Field
field
,
Annotation
[]
annotations
)
{
protected
BigIntegerField
newField
(
String
name
,
Field
field
)
{
return
new
BigIntegerField
(
field
.
getName
());
return
new
BigIntegerField
(
name
);
}
@Override
protected
void
setField
(
BigIntegerField
newField
,
Annotation
[]
annotations
)
{
}
}
private
BigIntegerFieldParser
()
{
private
BigIntegerFieldParser
()
{
...
...
src/main/java/logwire/web/bo/field/parse/BizArrayFieldParser.java
View file @
cf451604
package
logwire
.
web
.
bo
.
field
.
parse
;
package
logwire
.
web
.
bo
.
field
.
parse
;
import
logwire.core.meta.model.fields.
String
Field
;
import
logwire.core.meta.model.fields.
MultipleChoice
Field
;
import
java.lang.annotation.Annotation
;
import
java.lang.reflect.Field
;
import
java.lang.reflect.Field
;
public
class
BizArrayFieldParser
extends
FieldParser
<
String
Field
>
{
public
class
BizArrayFieldParser
extends
FieldParser
<
MultipleChoice
Field
>
{
@Override
@Override
protected
StringField
newField
(
Field
field
,
Annotation
[]
annotations
)
{
protected
MultipleChoiceField
newField
(
String
name
,
Field
field
)
{
return
new
StringField
(
field
.
getName
()
,
100
);
return
new
MultipleChoiceField
(
name
,
100
);
}
}
private
BizArrayFieldParser
()
{
private
BizArrayFieldParser
()
{
...
...
src/main/java/logwire/web/bo/field/parse/BooleanFieldParser.java
View file @
cf451604
...
@@ -2,13 +2,12 @@ package logwire.web.bo.field.parse;
...
@@ -2,13 +2,12 @@ package logwire.web.bo.field.parse;
import
logwire.core.meta.model.fields.BooleanField
;
import
logwire.core.meta.model.fields.BooleanField
;
import
java.lang.annotation.Annotation
;
import
java.lang.reflect.Field
;
import
java.lang.reflect.Field
;
public
class
BooleanFieldParser
extends
FieldParser
<
BooleanField
>
{
public
class
BooleanFieldParser
extends
FieldParser
<
BooleanField
>
{
@Override
@Override
protected
BooleanField
newField
(
Field
field
,
Annotation
[]
annotations
)
{
protected
BooleanField
newField
(
String
name
,
Field
field
)
{
return
new
BooleanField
(
field
.
getName
()
);
return
new
BooleanField
(
name
);
}
}
private
BooleanFieldParser
()
{
private
BooleanFieldParser
()
{
...
...
src/main/java/logwire/web/bo/field/parse/ChoiceFieldParser.java
0 → 100644
View file @
cf451604
package
logwire
.
web
.
bo
.
field
.
parse
;
import
logwire.core.meta.model.fields.ChoiceField
;
import
java.lang.reflect.Field
;
public
class
ChoiceFieldParser
extends
FieldParser
<
ChoiceField
>
{
@Override
protected
ChoiceField
newField
(
String
name
,
Field
field
)
{
return
new
ChoiceField
(
name
,
50
);
}
private
ChoiceFieldParser
()
{
}
public
static
ChoiceFieldParser
getInstance
()
{
return
ChoiceFieldParser
.
SingletonHolder
.
instance
;
}
private
static
class
SingletonHolder
{
private
static
ChoiceFieldParser
instance
=
new
ChoiceFieldParser
();
}
}
src/main/java/logwire/web/bo/field/parse/DateTimeFieldParser.java
View file @
cf451604
...
@@ -2,14 +2,13 @@ package logwire.web.bo.field.parse;
...
@@ -2,14 +2,13 @@ package logwire.web.bo.field.parse;
import
logwire.core.meta.model.fields.DateTimeField
;
import
logwire.core.meta.model.fields.DateTimeField
;
import
java.lang.annotation.Annotation
;
import
java.lang.reflect.Field
;
import
java.lang.reflect.Field
;
public
class
DateTimeFieldParser
extends
FieldParser
<
DateTimeField
>
{
public
class
DateTimeFieldParser
extends
FieldParser
<
DateTimeField
>
{
@Override
@Override
protected
DateTimeField
newField
(
Field
field
,
Annotation
[]
annotations
)
{
protected
DateTimeField
newField
(
String
name
,
Field
field
)
{
return
new
DateTimeField
(
field
.
getName
()
);
return
new
DateTimeField
(
name
);
}
}
private
DateTimeFieldParser
()
{
private
DateTimeFieldParser
()
{
...
...
src/main/java/logwire/web/bo/field/parse/DecimalFieldParser.java
View file @
cf451604
...
@@ -2,14 +2,13 @@ package logwire.web.bo.field.parse;
...
@@ -2,14 +2,13 @@ package logwire.web.bo.field.parse;
import
logwire.core.meta.model.fields.DecimalField
;
import
logwire.core.meta.model.fields.DecimalField
;
import
java.lang.annotation.Annotation
;
import
java.lang.reflect.Field
;
import
java.lang.reflect.Field
;
public
class
DecimalFieldParser
extends
FieldParser
<
DecimalField
>
{
public
class
DecimalFieldParser
extends
FieldParser
<
DecimalField
>
{
@Override
@Override
protected
DecimalField
newField
(
Field
field
,
Annotation
[]
annotations
)
{
protected
DecimalField
newField
(
String
name
,
Field
field
)
{
return
new
DecimalField
(
field
.
getName
()
,
18
,
6
);
return
new
DecimalField
(
name
,
18
,
6
);
}
}
private
DecimalFieldParser
()
{
private
DecimalFieldParser
()
{
...
...
src/main/java/logwire/web/bo/field/parse/FieldParser.java
View file @
cf451604
package
logwire
.
web
.
bo
.
field
.
parse
;
package
logwire
.
web
.
bo
.
field
.
parse
;
import
java.lang.annotation.Annotation
;
import
logwire.core.bo.annotation.Array
;
import
logwire.core.bo.annotation.Column
;
import
java.lang.reflect.Field
;
import
java.lang.reflect.Field
;
public
abstract
class
FieldParser
<
T
extends
logwire
.
core
.
meta
.
model
.
fields
.
Field
>
{
public
abstract
class
FieldParser
<
T
extends
logwire
.
core
.
meta
.
model
.
fields
.
Field
>
{
protected
abstract
T
newField
(
Field
field
,
Annotation
[]
annotations
);
protected
abstract
T
newField
(
String
name
,
Field
field
);
public
T
parse
(
Field
field
,
Annotation
[]
annotations
)
{
public
T
parse
(
String
name
,
Field
field
)
{
T
newField
=
newField
(
field
,
annotations
);
T
newField
=
newField
(
name
,
field
);
setField
(
newField
,
annotations
);
setField
(
newField
,
field
);
return
newField
;
return
newField
;
}
}
protected
void
setField
(
T
newField
,
Annotation
[]
annotations
)
{
protected
void
setField
(
T
newField
,
Field
field
)
{
if
(
field
.
getAnnotation
(
Column
.
class
)
!=
null
)
{
int
length
=
field
.
getAnnotation
(
Column
.
class
).
length
();
if
(
length
!=
0
)
{
newField
.
setLength
(
length
);
}
}
else
if
(
field
.
getAnnotation
(
Array
.
class
)
!=
null
)
{
int
length
=
field
.
getAnnotation
(
Array
.
class
).
length
();
if
(
length
!=
0
)
{
newField
.
setLength
(
length
);
}
}
}
}
...
...
src/main/java/logwire/web/bo/field/parse/FieldParserUtil.java
View file @
cf451604
package
logwire
.
web
.
bo
.
field
.
parse
;
package
logwire
.
web
.
bo
.
field
.
parse
;
import
logwire.core.bo.annotation.Choice
;
import
logwire.core.bo.annotation.ForeignKey
;
import
logwire.core.bo.field.BizArray
;
import
logwire.core.bo.field.BizArray
;
import
logwire.core.bo.field.BizOne
;
import
logwire.core.exceptions.ApplicationException
;
import
java.lang.
annotation.Annotation
;
import
java.lang.
reflect.Type
;
import
java.time.OffsetDateTime
;
import
java.time.OffsetDateTime
;
public
abstract
class
FieldParserUtil
{
public
abstract
class
FieldParserUtil
{
...
@@ -17,14 +21,30 @@ public abstract class FieldParserUtil {
...
@@ -17,14 +21,30 @@ public abstract class FieldParserUtil {
* @param annotations
* @param annotations
* @return
* @return
*/
*/
public
static
FieldParser
getParser
(
java
.
lang
.
reflect
.
Field
field
,
Annotation
[]
annotations
)
{
public
static
FieldParser
getParser
(
java
.
lang
.
reflect
.
Field
field
)
{
return
getParserByFieldType
(
field
);
if
(
field
.
getAnnotation
(
Choice
.
class
)
!=
null
)
{
if
(
field
.
getType
().
equals
(
String
.
class
))
{
return
ChoiceFieldParser
.
getInstance
();
}
else
if
(
field
.
getType
().
equals
(
BizArray
.
class
))
{
return
BizArrayFieldParser
.
getInstance
();
}
else
{
throw
new
ApplicationException
(
"@Choice 只能用与 String/BizArray 类型"
);
}
}
else
if
(
field
.
getAnnotation
(
ForeignKey
.
class
)
!=
null
)
{
//弱关联
if
(
field
.
getType
().
equals
(
BizOne
.
class
))
{
return
ForeignKeyFieldParser
.
getInstance
();
}
else
{
throw
new
ApplicationException
(
"@ForeignKey 只能用与 BizOne 类型"
);
}
}
return
getParserByFieldType
(
field
.
getType
());
}
}
p
rivate
static
FieldParser
getParserByFieldType
(
java
.
lang
.
reflect
.
Field
field
)
{
p
ublic
static
FieldParser
getParserByFieldType
(
Type
clazz
)
{
// 此时一定是存在 Field 类型的 annotation
// 此时一定是存在 Field 类型的 annotation
// 根据字段类型来推断 Parser
// 根据字段类型来推断 Parser
Class
clazz
=
field
.
getType
();
if
(
clazz
.
equals
(
String
.
class
))
{
if
(
clazz
.
equals
(
String
.
class
))
{
return
StringFieldParser
.
getInstance
();
return
StringFieldParser
.
getInstance
();
}
else
if
(
clazz
.
equals
(
Integer
.
class
)
||
clazz
.
equals
(
int
.
class
))
{
}
else
if
(
clazz
.
equals
(
Integer
.
class
)
||
clazz
.
equals
(
int
.
class
))
{
...
@@ -41,7 +61,9 @@ public abstract class FieldParserUtil {
...
@@ -41,7 +61,9 @@ public abstract class FieldParserUtil {
return
DecimalFieldParser
.
getInstance
();
return
DecimalFieldParser
.
getInstance
();
}
else
if
(
clazz
.
equals
(
BizArray
.
class
))
{
}
else
if
(
clazz
.
equals
(
BizArray
.
class
))
{
return
BizArrayFieldParser
.
getInstance
();
return
BizArrayFieldParser
.
getInstance
();
}
else
if
(
clazz
.
equals
(
BizOne
.
class
))
{
return
ForeignKeyFieldParser
.
getInstance
();
}
}
return
null
;
throw
new
ApplicationException
(
"该字段类型无法识别"
)
;
}
}
}
}
src/main/java/logwire/web/bo/field/parse/ForeignKeyFieldParser.java
0 → 100644
View file @
cf451604
package
logwire
.
web
.
bo
.
field
.
parse
;
import
logwire.core.bo.annotation.ForeignKey
;
import
logwire.core.bo.field.BizOne
;
import
logwire.core.exceptions.ApplicationException
;
import
logwire.core.meta.model.fields.ForeignKeyField
;
import
java.lang.reflect.Field
;
import
java.lang.reflect.ParameterizedType
;
import
java.lang.reflect.Type
;
public
class
ForeignKeyFieldParser
extends
FieldParser
<
ForeignKeyField
>
{
@Override
protected
ForeignKeyField
newField
(
String
name
,
Field
field
)
{
/**
*
* BizOne类型表示外键字段,
* TODO 若使用了@ForeignKey 弱关联
*
* */
if
(
field
.
getType
().
equals
(
BizOne
.
class
))
{
if
(
field
.
getAnnotation
(
ForeignKey
.
class
)
!=
null
)
{
return
new
ForeignKeyField
(
name
,
field
.
getAnnotation
(
ForeignKey
.
class
).
referBoName
());
}
else
{
Type
genericType
=
field
.
getGenericType
();
ParameterizedType
parameterizedType
=
(
ParameterizedType
)
genericType
;
Type
actualTypeArgument
=
parameterizedType
.
getActualTypeArguments
()[
0
];
return
new
ForeignKeyField
(
name
,
actualTypeArgument
.
getTypeName
());
}
}
else
{
throw
new
ApplicationException
(
"非BizOne类型不能作为外键"
);
}
}
private
ForeignKeyFieldParser
()
{
}
public
static
ForeignKeyFieldParser
getInstance
()
{
return
ForeignKeyFieldParser
.
SingletonHolder
.
instance
;
}
private
static
class
SingletonHolder
{
private
static
ForeignKeyFieldParser
instance
=
new
ForeignKeyFieldParser
();
}
}
src/main/java/logwire/web/bo/field/parse/IntegerFieldParser.java
View file @
cf451604
...
@@ -2,13 +2,12 @@ package logwire.web.bo.field.parse;
...
@@ -2,13 +2,12 @@ package logwire.web.bo.field.parse;
import
logwire.core.meta.model.fields.IntegerField
;
import
logwire.core.meta.model.fields.IntegerField
;
import
java.lang.annotation.Annotation
;
import
java.lang.reflect.Field
;
import
java.lang.reflect.Field
;
public
class
IntegerFieldParser
extends
FieldParser
<
IntegerField
>
{
public
class
IntegerFieldParser
extends
FieldParser
<
IntegerField
>
{
@Override
@Override
protected
IntegerField
newField
(
Field
field
,
Annotation
[]
annotations
)
{
protected
IntegerField
newField
(
String
name
,
Field
field
)
{
return
new
IntegerField
(
field
.
getName
()
);
return
new
IntegerField
(
name
);
}
}
private
IntegerFieldParser
()
{
private
IntegerFieldParser
()
{
...
...
src/main/java/logwire/web/bo/field/parse/SmallIntegerFieldParser.java
View file @
cf451604
...
@@ -2,13 +2,12 @@ package logwire.web.bo.field.parse;
...
@@ -2,13 +2,12 @@ package logwire.web.bo.field.parse;
import
logwire.core.meta.model.fields.SmallIntegerField
;
import
logwire.core.meta.model.fields.SmallIntegerField
;
import
java.lang.annotation.Annotation
;
import
java.lang.reflect.Field
;
import
java.lang.reflect.Field
;
public
class
SmallIntegerFieldParser
extends
FieldParser
<
SmallIntegerField
>
{
public
class
SmallIntegerFieldParser
extends
FieldParser
<
SmallIntegerField
>
{
@Override
@Override
protected
SmallIntegerField
newField
(
Field
field
,
Annotation
[]
annotations
)
{
protected
SmallIntegerField
newField
(
String
name
,
Field
field
)
{
return
new
SmallIntegerField
(
field
.
getName
()
);
return
new
SmallIntegerField
(
name
);
}
}
private
SmallIntegerFieldParser
()
{
private
SmallIntegerFieldParser
()
{
...
...
src/main/java/logwire/web/bo/field/parse/StringFieldParser.java
View file @
cf451604
...
@@ -2,13 +2,12 @@ package logwire.web.bo.field.parse;
...
@@ -2,13 +2,12 @@ package logwire.web.bo.field.parse;
import
logwire.core.meta.model.fields.StringField
;
import
logwire.core.meta.model.fields.StringField
;
import
java.lang.annotation.Annotation
;
import
java.lang.reflect.Field
;
import
java.lang.reflect.Field
;
public
class
StringFieldParser
extends
FieldParser
<
StringField
>
{
public
class
StringFieldParser
extends
FieldParser
<
StringField
>
{
@Override
@Override
protected
StringField
newField
(
Field
field
,
Annotation
[]
annotations
)
{
protected
StringField
newField
(
String
name
,
Field
field
)
{
return
new
StringField
(
field
.
getName
()
,
50
);
return
new
StringField
(
name
,
50
);
}
}
private
StringFieldParser
()
{
private
StringFieldParser
()
{
...
...
src/main/java/logwire/web/bo/handler/CreateOperationHandler.java
View file @
cf451604
package
logwire
.
web
.
bo
.
handler
;
package
logwire
.
web
.
bo
.
handler
;
import
logwire.core.bo.handler.TypeOperationHandler
;
import
logwire.core.bo.handler.TypeOperationHandler
;
import
logwire.web.bo.BoService
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
org.springframework.stereotype.Component
;
@Component
public
class
CreateOperationHandler
implements
TypeOperationHandler
{
public
class
CreateOperationHandler
implements
TypeOperationHandler
{
@Autowired
BoService
boService
;
@Override
@Override
public
Object
execute
(
Class
aClass
,
Object
...
args
)
{
public
Object
execute
(
Class
clazz
,
Object
...
args
)
{
return
null
;
return
boService
.
createBizObject
(
clazz
)
;
}
}
@Override
@Override
...
...
src/main/java/logwire/web/bo/loader/BoModelBeanLoader.java
View file @
cf451604
package
logwire
.
web
.
bo
.
loader
;
package
logwire
.
web
.
bo
.
loader
;
import
logwire.core.bo.annotation.BizModel
;
import
logwire.core.bo.annotation.*
;
import
logwire.core.bo.annotation.Column
;
import
logwire.core.bo.field.BizArray
;
import
logwire.core.bo.field.BizMany
;
import
logwire.core.bo.field.BizText
;
import
logwire.core.bo.object.BizObject
;
import
logwire.core.bo.object.BizObject
;
import
logwire.core.exceptions.ApplicationException
;
import
logwire.core.exceptions.ApplicationException
;
import
logwire.core.meta.model.Model
;
import
logwire.core.meta.model.Model
;
import
logwire.core.meta.model.fields.*
;
import
logwire.core.meta.query.IQuery
;
import
logwire.core.meta.query.IQuery
;
import
logwire.core.resource.BeanLoader
;
import
logwire.core.resource.BeanLoader
;
import
logwire.core.resource.loader.JavaModelBeanLoader
;
import
logwire.core.resource.loader.JavaModelBeanLoader
;
...
@@ -17,10 +20,11 @@ import org.springframework.beans.factory.config.BeanDefinition;
...
@@ -17,10 +20,11 @@ import org.springframework.beans.factory.config.BeanDefinition;
import
org.springframework.context.annotation.ClassPathScanningCandidateComponentProvider
;
import
org.springframework.context.annotation.ClassPathScanningCandidateComponentProvider
;
import
org.springframework.core.io.DefaultResourceLoader
;
import
org.springframework.core.io.DefaultResourceLoader
;
import
java.lang.annotation.Annotation
;
import
java.lang.reflect.Field
;
import
java.lang.reflect.Field
;
import
java.lang.reflect.ParameterizedType
;
import
java.lang.reflect.Type
;
import
java.util.List
;
import
java.util.List
;
import
java.util.
Set
;
import
java.util.
Map
;
import
java.util.function.Consumer
;
import
java.util.function.Consumer
;
import
java.util.stream.Collectors
;
import
java.util.stream.Collectors
;
...
@@ -31,9 +35,9 @@ public class BoModelBeanLoader extends BeanLoader<IQuery, TenantProject> impleme
...
@@ -31,9 +35,9 @@ public class BoModelBeanLoader extends BeanLoader<IQuery, TenantProject> impleme
/**
/**
* load BoModel 的逻辑:
* load BoModel 的逻辑:
* 1、先遍历出所有
BizObject的子类
* 1、先遍历出所有
BizObject 的子类 得到集合
* 2、
将直接继承BizObject的类初始化
* 2、
筛选出当中使用 @BizModel 的类,构建 Model,字段包含父类的字段
* 3、
剩余的类中,判断是否独立的model(包含BizModel注解),若是,生成Model;若不是,字段添加至父类的Model
中
* 3、
将集合中的剩余类的字段添加到父类对应的Model
中
*
*
* @param project 当前租户
* @param project 当前租户
* @param input 待加载的资源
* @param input 待加载的资源
...
@@ -43,21 +47,23 @@ public class BoModelBeanLoader extends BeanLoader<IQuery, TenantProject> impleme
...
@@ -43,21 +47,23 @@ public class BoModelBeanLoader extends BeanLoader<IQuery, TenantProject> impleme
@Override
@Override
public
void
load
(
TenantProject
project
,
TenantProject
input
,
Consumer
<
IQuery
>
consumer
)
throws
Exception
{
public
void
load
(
TenantProject
project
,
TenantProject
input
,
Consumer
<
IQuery
>
consumer
)
throws
Exception
{
TenantClassLoader
classLoader
=
project
.
getTenantBeanContext
().
getTenantClassLoader
();
TenantClassLoader
classLoader
=
project
.
getTenantBeanContext
().
getTenantClassLoader
();
//先扫描到所有的 BizObject (BizObject的所有子类)
ClassPathScanningCandidateComponentProvider
provider
=
loaderUtil
.
getScanningBeanProvider
();
ClassPathScanningCandidateComponentProvider
provider
=
loaderUtil
.
getScanningBeanProvider
();
provider
.
setResourceLoader
(
new
DefaultResourceLoader
(
classLoader
));
provider
.
setResourceLoader
(
new
DefaultResourceLoader
(
classLoader
));
provider
.
addIncludeFilter
(
loaderUtil
.
getAbstractTypeFilter
(
BizObject
.
class
));
provider
.
addIncludeFilter
(
loaderUtil
.
getAbstractTypeFilter
(
BizObject
.
class
));
Set
<
BeanDefinition
>
beans
=
provider
.
findCandidateComponents
(
"logwire.web.bo"
);
Map
<
Boolean
,
List
<
BeanDefinition
>>
isBizModel
=
provider
.
findCandidateComponents
(
"logwire.web"
)
.
stream
()
List
<
BeanDefinition
>
bizModelList
=
beans
.
stream
().
filter
(
beanDefinition
->
{
.
collect
(
Collectors
.
groupingBy
(
beanDefinition
->
{
try
{
try
{
Class
<?>
clazz
=
classLoader
.
loadClass
(
beanDefinition
.
getBeanClassName
());
Class
<?>
clazz
=
classLoader
.
loadClass
(
beanDefinition
.
getBeanClassName
());
BizModel
bizModelAnnotation
=
clazz
.
getAnnotation
(
BizModel
.
class
);
BizModel
bizModelAnnotation
=
clazz
.
getAnnotation
(
BizModel
.
class
);
return
bizModelAnnotation
!=
null
;
return
bizModelAnnotation
!=
null
;
}
catch
(
ClassNotFoundException
e
)
{
}
catch
(
ClassNotFoundException
e
)
{
throw
new
ApplicationException
(
""
);
throw
new
ApplicationException
(
""
);
}
}
}).
collect
(
Collectors
.
toList
(
));
}
));
List
<
BeanDefinition
>
bizModelList
=
isBizModel
.
get
(
true
);
for
(
BeanDefinition
beanDefinition
:
bizModelList
)
{
for
(
BeanDefinition
beanDefinition
:
bizModelList
)
{
Class
<?>
clazz
=
classLoader
.
loadClass
(
beanDefinition
.
getBeanClassName
());
Class
<?>
clazz
=
classLoader
.
loadClass
(
beanDefinition
.
getBeanClassName
());
//独立model
//独立model
...
@@ -67,12 +73,7 @@ public class BoModelBeanLoader extends BeanLoader<IQuery, TenantProject> impleme
...
@@ -67,12 +73,7 @@ public class BoModelBeanLoader extends BeanLoader<IQuery, TenantProject> impleme
model
.
setIncludeAuditFields
(
true
);
model
.
setIncludeAuditFields
(
true
);
model
.
setIncludeVersionField
(
true
);
model
.
setIncludeVersionField
(
true
);
model
.
setIncludeDomainField
(
true
);
model
.
setIncludeDomainField
(
true
);
initField
(
clazz
,
model
);
initField
(
clazz
,
model
,
consumer
);
/*
//todo
this.initIndex(clazz, model);
this.initSign(model);*/
consumer
.
accept
(
model
);
consumer
.
accept
(
model
);
}
}
...
@@ -80,23 +81,105 @@ public class BoModelBeanLoader extends BeanLoader<IQuery, TenantProject> impleme
...
@@ -80,23 +81,105 @@ public class BoModelBeanLoader extends BeanLoader<IQuery, TenantProject> impleme
}
}
private
void
initField
(
Class
<?>
clazz
,
Model
model
)
{
private
void
initField
(
Class
<?>
clazz
,
Model
model
,
Consumer
consumer
)
{
//获取所有带有Column注解的字段
Field
[]
fields
=
clazz
.
getDeclaredFields
();
Field
[]
fields
=
clazz
.
getDeclaredFields
();
for
(
Field
f
:
fields
)
{
for
(
Field
f
:
fields
)
{
Column
column
=
f
.
getAnnotation
(
Column
.
class
);
if
(
f
.
getAnnotation
(
Column
.
class
)
!=
null
)
{
if
(
column
!=
null
)
{
//带有Column注解的字段
Annotation
[]
annotations
=
f
.
getDeclaredAnnotations
();
FieldParser
parser
=
FieldParserUtil
.
getParser
(
f
);
FieldParser
parser
=
FieldParserUtil
.
getParser
(
f
,
annotations
);
logwire
.
core
.
meta
.
model
.
fields
.
Field
field
=
parser
.
parse
(
f
.
getName
(),
f
);
if
(
parser
==
null
)
{
continue
;
}
logwire
.
core
.
meta
.
model
.
fields
.
Field
field
=
parser
.
parse
(
f
,
annotations
);
model
.
addField
(
field
);
model
.
addField
(
field
);
}
else
if
(
f
.
getAnnotation
(
Text
.
class
)
!=
null
)
{
// 带有Text注解的字段 大文本属性会创建一张子表(Model),子表名为:BO表名_属性名,一个BO有多个大字段时,使用同一张表
if
(
f
.
getType
()
!=
BizText
.
class
)
{
throw
new
ApplicationException
(
"@Text 字段类型必须为BizText"
);
}
newTextModel
(
model
,
f
,
consumer
);
}
else
if
(
f
.
getAnnotation
(
Array
.
class
)
!=
null
)
{
// 带有Text注解的字段 大文本属性会创建一张子表(Model),子表名为:BO表名_属性名,一个BO有多个大字段时,使用同一张表
if
(
f
.
getType
()
!=
BizArray
.
class
)
{
throw
new
ApplicationException
(
"@Array 字段类型必须为BizArray"
);
}
newArrayModel
(
model
,
f
,
consumer
);
}
else
if
(
f
.
getAnnotation
(
Many
.
class
)
!=
null
)
{
// 带有Text注解的字段 大文本属性会创建一张子表(Model),子表名为:BO表名_属性名,一个BO有多个大字段时,使用同一张表
if
(
f
.
getType
()
!=
BizMany
.
class
)
{
throw
new
ApplicationException
(
"@Many 字段类型必须为BizMany"
);
}
newManyModel
(
model
,
f
,
consumer
);
}
}
}
}
}
}
/**
* 数组字段值存到一个列中,用逗号分隔 字段:
* owner_id/所属对象ID (BigInt)
* value/值 (varchar/numeric/boolean/bigint/integer/timestamp)
* idx/顺序 Integer
*
* @param f
* @param consumer
*/
private
void
newArrayModel
(
Model
model
,
Field
f
,
Consumer
consumer
)
{
Array
array
=
f
.
getAnnotation
(
Array
.
class
);
Model
arrayModel
=
new
Model
();
arrayModel
.
setName
(
model
.
getName
()
+
"_"
+
f
.
getName
());
arrayModel
.
setVerboseName
(
array
.
label
());
ForeignKeyField
ownerId
=
new
ForeignKeyField
(
"owner_id"
,
model
.
getName
());
ownerId
.
setPrimaryKey
(
true
);
arrayModel
.
addField
(
ownerId
);
arrayModel
.
addField
(
new
IntegerField
(
"idx"
));
Type
actualTypeArguments
=
((
ParameterizedType
)
f
.
getGenericType
()).
getActualTypeArguments
()[
0
];
FieldParser
parser
=
FieldParserUtil
.
getParserByFieldType
(
actualTypeArguments
);
logwire
.
core
.
meta
.
model
.
fields
.
Field
valueField
=
parser
.
parse
(
"value"
,
f
);
model
.
addField
(
valueField
);
consumer
.
accept
(
model
);
}
/**
* 大文本 字段:
* owner_id/所属对象ID (BigInt)
* field_name/字段名 varchar(50)
* value/值 (varchar/numeric/boolean/bigint/integer/timestamp)
*
* @param model
* @param f
* @param consumer
*/
private
void
newTextModel
(
Model
model
,
Field
f
,
Consumer
consumer
)
{
Text
text
=
f
.
getAnnotation
(
Text
.
class
);
Model
textModel
=
new
Model
();
textModel
.
setName
(
model
.
getName
()
+
"_text"
);
textModel
.
setVerboseName
(
text
.
label
());
ForeignKeyField
ownerId
=
new
ForeignKeyField
(
"owner_id"
,
model
.
getName
());
ownerId
.
setPrimaryKey
(
true
);
textModel
.
addField
(
ownerId
);
textModel
.
addField
(
new
StringField
(
"field_name"
,
50
));
textModel
.
addField
(
new
TextField
(
"value"
));
consumer
.
accept
(
model
);
}
/**
* 多对多关联属性 字段:
* id
* master_id 主表ID
* slave_id 从表ID
*
* @param model
* @param f
* @param consumer
*/
private
void
newManyModel
(
Model
model
,
Field
f
,
Consumer
consumer
)
{
Many
many
=
f
.
getAnnotation
(
Many
.
class
);
Model
manyModel
=
new
Model
();
manyModel
.
setName
(
model
.
getName
()
+
"_"
+
f
.
getName
());
manyModel
.
setVerboseName
(
many
.
label
());
manyModel
.
addField
(
new
AutoField
());
manyModel
.
addField
(
new
ForeignKeyField
(
"master_id"
,
model
.
getName
()));
manyModel
.
addField
(
new
ForeignKeyField
(
"slave_id"
,
many
.
referBoName
()));
consumer
.
accept
(
model
);
}
@Override
@Override
public
boolean
accept
(
TenantProject
input
)
{
public
boolean
accept
(
TenantProject
input
)
{
return
true
;
return
true
;
...
...
src/main/java/logwire/web/bo/loader/BoRelationBeanDefinitionLoader.java
View file @
cf451604
...
@@ -14,6 +14,7 @@ import logwire.core.bo.handler.ObjectOperationHandler;
...
@@ -14,6 +14,7 @@ import logwire.core.bo.handler.ObjectOperationHandler;
import
logwire.core.bo.handler.OperationHandler
;
import
logwire.core.bo.handler.OperationHandler
;
import
logwire.core.bo.handler.TypeOperationHandler
;
import
logwire.core.bo.handler.TypeOperationHandler
;
import
logwire.core.bo.object.BizObject
;
import
logwire.core.bo.object.BizObject
;
import
logwire.core.exceptions.ApplicationException
;
import
logwire.core.resource.BeanLoader
;
import
logwire.core.resource.BeanLoader
;
import
logwire.core.tenant.TenantClassLoader
;
import
logwire.core.tenant.TenantClassLoader
;
import
logwire.core.tenant.TenantProject
;
import
logwire.core.tenant.TenantProject
;
...
@@ -31,24 +32,46 @@ import org.springframework.stereotype.Component;
...
@@ -31,24 +32,46 @@ import org.springframework.stereotype.Component;
import
java.lang.reflect.Field
;
import
java.lang.reflect.Field
;
import
java.lang.reflect.ParameterizedType
;
import
java.lang.reflect.ParameterizedType
;
import
java.util.List
;
import
java.util.Map
;
import
java.util.Map
;
import
java.util.Set
;
import
java.util.Set
;
import
java.util.function.Consumer
;
import
java.util.function.Consumer
;
import
java.util.stream.Collectors
;
@Component
@Component
public
class
BoRelationBeanDefinitionLoader
extends
BeanLoader
<
BoRelationDefinition
,
TenantProject
>
{
public
class
BoRelationBeanDefinitionLoader
extends
BeanLoader
<
BoRelationDefinition
,
TenantProject
>
{
private
final
String
BIZ_OBJECT
=
"biz_object"
;
private
final
String
TYPE_OPERATION_PROVIDER
=
"type_operation_provider"
;
private
final
String
OBJECT_OPERATION_PROVIDER
=
"object_operation_provider"
;
private
final
String
LIST_OPERATION_PROVIDER
=
"list_operation_provider"
;
private
final
String
TYPE_OPERATION_HANDLER
=
"type_operation_handler"
;
private
final
String
OBJECT_OPERATION_HANDLER
=
"object_operation_handler"
;
private
final
String
LIST_OPERATION_HANDLER
=
"list_operation_handler"
;
private
final
String
TYPE_OPERATION_EVENT_HANDLER
=
"type_operation_event_handler"
;
private
final
String
OBJECT_OPERATION_EVENT_HANDLER
=
"object_operation_event_handler"
;
private
final
String
LIST_OPERATION_EVENT_HANDLER
=
"list_operation_event_handler"
;
@Autowired
@Autowired
QueryService
queryService
;
QueryService
queryService
;
@Autowired
@Autowired
LoaderUtil
loaderUtil
;
LoaderUtil
loaderUtil
;
/**
* 加载BO相关定义并初始化 service
*
* @param project 当前租户
* @param input 待加载的资源
* @param consumer 处理加载结果
* @throws Exception
*/
@Override
@Override
public
void
load
(
TenantProject
project
,
TenantProject
input
,
Consumer
<
BoRelationDefinition
>
consumer
)
throws
Exception
{
public
void
load
(
TenantProject
project
,
TenantProject
input
,
Consumer
<
BoRelationDefinition
>
consumer
)
throws
Exception
{
Map
<
String
,
BoRelationDefinition
>
boRelationBeanDefinitions
=
loadBeanDefinition
(
project
);
Map
<
String
,
BoRelationDefinition
>
boRelationBeanDefinitions
=
loadBeanDefinition
(
project
);
boRelationBeanDefinitions
.
values
().
forEach
(
boRelationDefinition
->
{
boRelationBeanDefinitions
.
values
().
forEach
(
boRelationDefinition
->
{
initializeService
(
boRelationDefinition
,
boRelationBeanDefinitions
);
initializeService
(
boRelationDefinition
,
boRelationBeanDefinitions
);
consumer
.
accept
(
boRelationDefinition
);
});
});
}
}
...
@@ -74,8 +97,7 @@ public class BoRelationBeanDefinitionLoader extends BeanLoader<BoRelationDefinit
...
@@ -74,8 +97,7 @@ public class BoRelationBeanDefinitionLoader extends BeanLoader<BoRelationDefinit
field
.
set
(
null
,
o
);
field
.
set
(
null
,
o
);
boRelationDefinition
.
setBoServiceInitialized
(
true
);
boRelationDefinition
.
setBoServiceInitialized
(
true
);
}
catch
(
NoSuchFieldException
|
IllegalAccessException
|
InstantiationException
e
)
{
}
catch
(
NoSuchFieldException
|
IllegalAccessException
|
InstantiationException
e
)
{
//TODO
throw
ApplicationException
.
wrap
(
e
);
e
.
printStackTrace
();
}
}
}
}
}
}
...
@@ -91,45 +113,150 @@ public class BoRelationBeanDefinitionLoader extends BeanLoader<BoRelationDefinit
...
@@ -91,45 +113,150 @@ public class BoRelationBeanDefinitionLoader extends BeanLoader<BoRelationDefinit
ClassPathScanningCandidateComponentProvider
provider
=
loaderUtil
.
getScanningBeanProvider
();
ClassPathScanningCandidateComponentProvider
provider
=
loaderUtil
.
getScanningBeanProvider
();
provider
.
setResourceLoader
(
new
DefaultResourceLoader
(
classLoader
));
provider
.
setResourceLoader
(
new
DefaultResourceLoader
(
classLoader
));
addIncludeFilters
(
provider
);
addIncludeFilters
(
provider
);
Set
<
BeanDefinition
>
boClassDefinitions
=
provider
.
findCandidateComponents
(
"logwire.web.bo"
);
// 在 logwire package 下获取所有 bo相关类(bizObject provider handler)
//beans 是有序的
Set
<
BeanDefinition
>
boClassDefinitions
=
provider
.
findCandidateComponents
(
"logwire.web"
);
for
(
BeanDefinition
boClassDefinition
:
boClassDefinitions
)
{
Map
<
String
,
List
<
Class
<?>>>
beanClassMap
=
getGroupedMap
(
classLoader
,
boClassDefinitions
);
Class
<?>
clazz
=
Class
.
forName
(
boClassDefinition
.
getBeanClassName
(),
true
,
classLoader
);
registerBeanDefinition
(
boRelationBeanDefinitions
,
beanClassMap
);
if
(
loaderUtil
.
isBizObject
(
clazz
))
{
addOperationProvider
(
boRelationBeanDefinitions
,
beanClassMap
);
BoRelationDefinition
boRelationDefinition
=
doRegisterBeanDefinition
((
Class
<?
extends
BizObject
>)
clazz
);
addOperationHandler
(
boRelationBeanDefinitions
,
beanClassMap
);
boRelationBeanDefinitions
.
put
(
boRelationDefinition
.
getId
(),
boRelationDefinition
);
addOperationEventHandler
(
boRelationBeanDefinitions
,
beanClassMap
);
}
else
{
//handler
if
(
loaderUtil
.
isOperationHandler
(
clazz
))
{
if
(!
isConcrete
((
ScannedGenericBeanDefinition
)
boClassDefinition
))
continue
;
addOperationHandler
(
boRelationBeanDefinitions
,
(
Class
<
OperationHandler
>)
clazz
);
}
//event_handler
else
if
(
loaderUtil
.
isOperationEventHandler
(
clazz
))
{
if
(!
isConcrete
((
ScannedGenericBeanDefinition
)
boClassDefinition
))
continue
;
addOperationEventHandler
(
boRelationBeanDefinitions
,
(
Class
<
OperationEventHandler
>)
clazz
);
}
//operation
else
if
(
clazz
.
getAnnotation
(
TypeOperationProvider
.
class
)
!=
null
)
{
Class
<?
extends
BizObject
>
type
=
clazz
.
getAnnotation
(
TypeOperationProvider
.
class
).
type
();
boRelationBeanDefinitions
.
get
(
type
.
getSimpleName
()).
addTypeOperationProvider
(
clazz
);
}
else
if
(
clazz
.
getAnnotation
(
ObjectOperationProvider
.
class
)
!=
null
)
{
Class
<?
extends
BizObject
>
type
=
clazz
.
getAnnotation
(
ObjectOperationProvider
.
class
).
type
();
boRelationBeanDefinitions
.
get
(
type
.
getSimpleName
()).
addObjectOperationProvider
(
clazz
);
}
else
if
(
clazz
.
getAnnotation
(
ListOperationProvider
.
class
)
!=
null
)
{
Class
<?
extends
BizObject
>
type
=
clazz
.
getAnnotation
(
ListOperationProvider
.
class
).
type
();
boRelationBeanDefinitions
.
get
(
type
.
getSimpleName
()).
addListOperationProvider
(
clazz
);
}
}
}
return
boRelationBeanDefinitions
;
return
boRelationBeanDefinitions
;
}
}
private
Map
<
String
,
List
<
Class
<?>>>
getGroupedMap
(
TenantClassLoader
classLoader
,
Set
<
BeanDefinition
>
boClassDefinitions
)
{
//集合拆分
return
boClassDefinitions
.
stream
().
map
(
beanDefinition
->
{
try
{
return
Class
.
forName
(
beanDefinition
.
getBeanClassName
(),
true
,
classLoader
);
}
catch
(
ClassNotFoundException
e
)
{
throw
new
ApplicationException
(
e
.
getMessage
(),
e
);
}
}).
collect
(
Collectors
.
groupingBy
(
clazz
->
{
if
(
BizObject
.
class
.
isAssignableFrom
(
clazz
))
{
return
BIZ_OBJECT
;
}
else
if
(
TypeOperationProvider
.
class
.
isAssignableFrom
(
clazz
))
{
return
TYPE_OPERATION_PROVIDER
;
}
else
if
(
ObjectOperationProvider
.
class
.
isAssignableFrom
(
clazz
))
{
return
OBJECT_OPERATION_PROVIDER
;
}
else
if
(
ListOperationProvider
.
class
.
isAssignableFrom
(
clazz
))
{
return
LIST_OPERATION_PROVIDER
;
}
else
if
(
TypeOperationHandler
.
class
.
isAssignableFrom
(
clazz
))
{
return
TYPE_OPERATION_HANDLER
;
}
else
if
(
ObjectOperationHandler
.
class
.
isAssignableFrom
(
clazz
))
{
return
OBJECT_OPERATION_HANDLER
;
}
else
if
(
ListOperationHandler
.
class
.
isAssignableFrom
(
clazz
))
{
return
LIST_OPERATION_HANDLER
;
}
else
if
(
TypeOperationEventHandler
.
class
.
isAssignableFrom
(
clazz
))
{
return
TYPE_OPERATION_EVENT_HANDLER
;
}
else
if
(
ObjectOperationEventHandler
.
class
.
isAssignableFrom
(
clazz
))
{
return
OBJECT_OPERATION_EVENT_HANDLER
;
}
else
if
(
ListOperationEventHandler
.
class
.
isAssignableFrom
(
clazz
))
{
return
LIST_OPERATION_EVENT_HANDLER
;
}
return
null
;
}));
}
private
void
registerBeanDefinition
(
Map
<
String
,
BoRelationDefinition
>
boRelationBeanDefinitions
,
Map
<
String
,
List
<
Class
<?>>>
beanClassMap
)
{
beanClassMap
.
get
(
BIZ_OBJECT
).
forEach
(
clazz
->
{
BoRelationDefinition
boRelationDefinition
=
doRegisterBeanDefinition
((
Class
<?
extends
BizObject
>)
clazz
);
boRelationBeanDefinitions
.
put
(
boRelationDefinition
.
getId
(),
boRelationDefinition
);
});
}
private
void
addOperationProvider
(
Map
<
String
,
BoRelationDefinition
>
boRelationBeanDefinitions
,
Map
<
String
,
List
<
Class
<?>>>
beanClassMap
)
{
beanClassMap
.
get
(
TYPE_OPERATION_PROVIDER
).
forEach
(
clazz
->
{
Class
<?
extends
BizObject
>
type
=
clazz
.
getAnnotation
(
TypeOperationProvider
.
class
).
type
();
boRelationBeanDefinitions
.
get
(
type
.
getSimpleName
()).
addTypeOperationProvider
(
clazz
);
});
beanClassMap
.
get
(
OBJECT_OPERATION_PROVIDER
).
forEach
(
clazz
->
{
Class
<?
extends
BizObject
>
type
=
clazz
.
getAnnotation
(
ObjectOperationProvider
.
class
).
type
();
boRelationBeanDefinitions
.
get
(
type
.
getSimpleName
()).
addObjectOperationProvider
(
clazz
);
});
beanClassMap
.
get
(
LIST_OPERATION_PROVIDER
).
forEach
(
clazz
->
{
Class
<?
extends
BizObject
>
type
=
clazz
.
getAnnotation
(
ListOperationProvider
.
class
).
type
();
boRelationBeanDefinitions
.
get
(
type
.
getSimpleName
()).
addListOperationProvider
(
clazz
);
});
}
private
void
addOperationHandler
(
Map
<
String
,
BoRelationDefinition
>
boRelationBeanDefinitions
,
Map
<
String
,
List
<
Class
<?>>>
beanClassMap
)
{
beanClassMap
.
get
(
TYPE_OPERATION_HANDLER
).
forEach
(
clazz
->
{
try
{
//get BizObject from genericInterface
BoRelationDefinition
boRelationDefinition
=
getBoRelationDefinitionFromGeneric
(
boRelationBeanDefinitions
,
clazz
);
TypeOperationHandler
opHandler
=
(
TypeOperationHandler
)
clazz
.
newInstance
();
boRelationDefinition
.
getTypeOperationHandlers
().
add
(
opHandler
);
}
catch
(
IllegalAccessException
|
InstantiationException
e
)
{
throw
ApplicationException
.
wrap
(
e
);
}
});
beanClassMap
.
get
(
OBJECT_OPERATION_HANDLER
).
forEach
(
clazz
->
{
try
{
//get BizObject from genericInterface
BoRelationDefinition
boRelationDefinition
=
getBoRelationDefinitionFromGeneric
(
boRelationBeanDefinitions
,
clazz
);
ObjectOperationHandler
opHandler
=
(
ObjectOperationHandler
)
clazz
.
newInstance
();
boRelationDefinition
.
getObjectOperationHandlers
().
add
(
opHandler
);
}
catch
(
IllegalAccessException
|
InstantiationException
e
)
{
throw
ApplicationException
.
wrap
(
e
);
}
});
beanClassMap
.
get
(
LIST_OPERATION_HANDLER
).
forEach
(
clazz
->
{
try
{
//get BizObject from genericInterface
BoRelationDefinition
boRelationDefinition
=
getBoRelationDefinitionFromGeneric
(
boRelationBeanDefinitions
,
clazz
);
ListOperationHandler
opHandler
=
(
ListOperationHandler
)
clazz
.
newInstance
();
boRelationDefinition
.
getListOperationHandlers
().
add
(
opHandler
);
}
catch
(
IllegalAccessException
|
InstantiationException
e
)
{
throw
ApplicationException
.
wrap
(
e
);
}
});
}
private
void
addOperationEventHandler
(
Map
<
String
,
BoRelationDefinition
>
boRelationBeanDefinitions
,
Map
<
String
,
List
<
Class
<?>>>
beanClassMap
)
{
beanClassMap
.
get
(
TYPE_OPERATION_EVENT_HANDLER
).
forEach
(
clazz
->
{
try
{
BoRelationDefinition
boRelationDefinition
=
getBoRelationDefinitionFromGeneric
(
boRelationBeanDefinitions
,
clazz
);
List
<
TypeOperationEventHandler
>
typeOperationEventHandlers
=
boRelationDefinition
.
getTypeOperationEventHandlers
();
TypeOperationEventHandler
opHandler
=
(
TypeOperationEventHandler
)
clazz
.
newInstance
();
typeOperationEventHandlers
.
add
(
opHandler
);
}
catch
(
IllegalAccessException
|
InstantiationException
e
)
{
throw
ApplicationException
.
wrap
(
e
);
}
});
beanClassMap
.
get
(
OBJECT_OPERATION_EVENT_HANDLER
).
forEach
(
clazz
->
{
try
{
//get BizObject from genericInterface
BoRelationDefinition
boRelationDefinition
=
getBoRelationDefinitionFromGeneric
(
boRelationBeanDefinitions
,
clazz
);
ObjectOperationEventHandler
opHandler
=
(
ObjectOperationEventHandler
)
clazz
.
newInstance
();
boRelationDefinition
.
getObjectOperationEventHandlers
().
add
(
opHandler
);
}
catch
(
IllegalAccessException
|
InstantiationException
e
)
{
throw
ApplicationException
.
wrap
(
e
);
}
});
beanClassMap
.
get
(
LIST_OPERATION_EVENT_HANDLER
).
forEach
(
clazz
->
{
try
{
//get BizObject from genericInterface
BoRelationDefinition
boRelationDefinition
=
getBoRelationDefinitionFromGeneric
(
boRelationBeanDefinitions
,
clazz
);
ListOperationEventHandler
opHandler
=
(
ListOperationEventHandler
)
clazz
.
newInstance
();
boRelationDefinition
.
getListOperationEventHandlers
().
add
(
opHandler
);
}
catch
(
IllegalAccessException
|
InstantiationException
e
)
{
throw
ApplicationException
.
wrap
(
e
);
}
});
}
private
BoRelationDefinition
getBoRelationDefinitionFromGeneric
(
Map
<
String
,
BoRelationDefinition
>
boRelationBeanDefinitions
,
Class
<?>
clazz
)
{
//get BizObject from genericInterface
Class
<?
extends
BizObject
>
bizObject
=
(
Class
<?
extends
BizObject
>)
((
ParameterizedType
)
clazz
.
getGenericInterfaces
()[
0
]).
getActualTypeArguments
()[
0
];
return
boRelationBeanDefinitions
.
get
(
bizObject
.
getSimpleName
());
}
private
BoRelationDefinition
doRegisterBeanDefinition
(
Class
<?
extends
BizObject
>
beanClass
)
{
private
BoRelationDefinition
doRegisterBeanDefinition
(
Class
<?
extends
BizObject
>
beanClass
)
{
BoRelationDefinition
boRelationDefinition
=
new
BoRelationDefinition
();
BoRelationDefinition
boRelationDefinition
=
new
BoRelationDefinition
();
boRelationDefinition
.
setId
(
beanClass
.
get
Simple
Name
());
boRelationDefinition
.
setId
(
beanClass
.
getName
());
boRelationDefinition
.
setName
(
beanClass
.
get
Simple
Name
());
boRelationDefinition
.
setName
(
beanClass
.
getName
());
boRelationDefinition
.
setBoClass
(
beanClass
);
boRelationDefinition
.
setBoClass
(
beanClass
);
boRelationDefinition
.
setBizModel
(
beanClass
.
isAnnotationPresent
(
BizModel
.
class
));
boRelationDefinition
.
setBizModel
(
beanClass
.
isAnnotationPresent
(
BizModel
.
class
));
return
boRelationDefinition
;
return
boRelationDefinition
;
...
@@ -145,38 +272,6 @@ public class BoRelationBeanDefinitionLoader extends BeanLoader<BoRelationDefinit
...
@@ -145,38 +272,6 @@ public class BoRelationBeanDefinitionLoader extends BeanLoader<BoRelationDefinit
provider
.
addIncludeFilter
(
new
AnnotationTypeFilter
(
ListOperationProvider
.
class
));
provider
.
addIncludeFilter
(
new
AnnotationTypeFilter
(
ListOperationProvider
.
class
));
}
}
private
void
addOperationEventHandler
(
Map
<
String
,
BoRelationDefinition
>
bizObjectBeanMap
,
Class
<
OperationEventHandler
>
clazz
)
throws
IllegalAccessException
,
InstantiationException
{
//get BizObject from genericInterface
Class
<?
extends
BizObject
>
bizObject
=
(
Class
<?
extends
BizObject
>)
((
ParameterizedType
)
clazz
.
getGenericInterfaces
()[
0
]).
getActualTypeArguments
()[
0
];
BoRelationDefinition
boRelationDefinition
=
bizObjectBeanMap
.
get
(
bizObject
.
getSimpleName
());
OperationEventHandler
opEventHandler
=
clazz
.
newInstance
();
if
(
opEventHandler
.
isEnabled
())
{
if
(
TypeOperationEventHandler
.
class
.
isAssignableFrom
(
clazz
))
{
boRelationDefinition
.
getTypeOperationEventHandlers
().
add
((
TypeOperationEventHandler
)
opEventHandler
);
}
else
if
(
TypeOperationHandler
.
class
.
isAssignableFrom
(
clazz
))
{
boRelationDefinition
.
getObjectOperationEventHandlers
().
add
((
ObjectOperationEventHandler
)
opEventHandler
);
}
else
{
boRelationDefinition
.
getListOperationEventHandlers
().
add
((
ListOperationEventHandler
)
opEventHandler
);
}
}
}
private
void
addOperationHandler
(
Map
<
String
,
BoRelationDefinition
>
bizObjectBeanMap
,
Class
<
OperationHandler
>
clazz
)
throws
IllegalAccessException
,
InstantiationException
{
//get BizObject from genericInterface
Class
<?
extends
BizObject
>
bizObject
=
(
Class
<?
extends
BizObject
>)
((
ParameterizedType
)
clazz
.
getGenericInterfaces
()[
0
]).
getActualTypeArguments
()[
0
];
BoRelationDefinition
boRelationDefinition
=
bizObjectBeanMap
.
get
(
bizObject
.
getSimpleName
());
OperationHandler
opHandler
=
clazz
.
newInstance
();
if
(
opHandler
.
isEnabled
())
{
if
(
TypeOperationHandler
.
class
.
isAssignableFrom
(
clazz
))
{
boRelationDefinition
.
getTypeOperationHandlers
().
add
((
TypeOperationHandler
)
opHandler
);
}
else
if
(
ObjectOperationHandler
.
class
.
isAssignableFrom
(
clazz
))
{
boRelationDefinition
.
getObjectOperationHandlers
().
add
((
ObjectOperationHandler
)
opHandler
);
}
else
if
(
ListOperationHandler
.
class
.
isAssignableFrom
(
clazz
))
{
boRelationDefinition
.
getListOperationHandlers
().
add
((
ListOperationHandler
)
opHandler
);
}
}
}
private
boolean
isConcrete
(
ScannedGenericBeanDefinition
beanDefinition
)
{
private
boolean
isConcrete
(
ScannedGenericBeanDefinition
beanDefinition
)
{
return
beanDefinition
.
getMetadata
().
isConcrete
();
return
beanDefinition
.
getMetadata
().
isConcrete
();
}
}
...
...
src/main/java/logwire/web/bo/loader/LoaderUtil.java
View file @
cf451604
...
@@ -2,6 +2,7 @@ package logwire.web.bo.loader;
...
@@ -2,6 +2,7 @@ package logwire.web.bo.loader;
import
logwire.core.bo.eventhandler.OperationEventHandler
;
import
logwire.core.bo.eventhandler.OperationEventHandler
;
import
logwire.core.bo.handler.OperationHandler
;
import
logwire.core.bo.handler.OperationHandler
;
import
logwire.core.bo.handler.TypeOperationHandler
;
import
logwire.core.bo.object.BizObject
;
import
logwire.core.bo.object.BizObject
;
import
org.springframework.beans.factory.annotation.AnnotatedBeanDefinition
;
import
org.springframework.beans.factory.annotation.AnnotatedBeanDefinition
;
import
org.springframework.context.annotation.ClassPathScanningCandidateComponentProvider
;
import
org.springframework.context.annotation.ClassPathScanningCandidateComponentProvider
;
...
@@ -26,10 +27,18 @@ public class LoaderUtil {
...
@@ -26,10 +27,18 @@ public class LoaderUtil {
}
}
public
boolean
isAssignableFrom
(
Class
<?>
beanClass
)
{
return
BizObject
.
class
.
isAssignableFrom
(
beanClass
);
}
public
boolean
isBizObject
(
Class
<?>
beanClass
)
{
public
boolean
isBizObject
(
Class
<?>
beanClass
)
{
return
BizObject
.
class
.
isAssignableFrom
(
beanClass
);
return
BizObject
.
class
.
isAssignableFrom
(
beanClass
);
}
}
public
boolean
isTypeOperationHandler
(
Class
<?>
beanClass
)
{
return
TypeOperationHandler
.
class
.
isAssignableFrom
(
beanClass
);
}
public
boolean
isOperationHandler
(
Class
<?>
beanClass
)
{
public
boolean
isOperationHandler
(
Class
<?>
beanClass
)
{
return
OperationHandler
.
class
.
isAssignableFrom
(
beanClass
);
return
OperationHandler
.
class
.
isAssignableFrom
(
beanClass
);
}
}
...
@@ -57,6 +66,12 @@ public class LoaderUtil {
...
@@ -57,6 +66,12 @@ public class LoaderUtil {
super
(
useDefaultFilters
);
super
(
useDefaultFilters
);
}
}
/**
*
* //TODO 注释
* @param beanDefinition
* @return
*/
@Override
@Override
protected
boolean
isCandidateComponent
(
AnnotatedBeanDefinition
beanDefinition
)
{
protected
boolean
isCandidateComponent
(
AnnotatedBeanDefinition
beanDefinition
)
{
AnnotationMetadata
metadata
=
beanDefinition
.
getMetadata
();
AnnotationMetadata
metadata
=
beanDefinition
.
getMetadata
();
...
...
src/main/java/logwire/web/bo/provider/DefaultObjectOperationProvider.java
0 → 100644
View file @
cf451604
package
logwire
.
web
.
bo
.
provider
;
import
logwire.core.bo.annotation.ObjectOperationProvider
;
import
logwire.core.bo.annotation.Operation
;
import
logwire.core.bo.object.BizObject
;
//所有BO Object 默认Operation定义
@ObjectOperationProvider
(
type
=
BizObject
.
class
)
public
interface
DefaultObjectOperationProvider
{
@Operation
()
void
save
();
@Operation
()
void
delete
();
@Operation
()
void
update
(
String
...
fields
);
// 更多操作定义
}
\ No newline at end of file
src/main/java/logwire/web/bo/provider/DefaultTypeOperationProvider.java
View file @
cf451604
...
@@ -15,7 +15,7 @@ public interface DefaultTypeOperationProvider {
...
@@ -15,7 +15,7 @@ public interface DefaultTypeOperationProvider {
<
X
>
X
create
();
<
X
>
X
create
();
@Operation
()
@Operation
()
<
X
>
X
create
(
Map
defaultValues
);
<
X
>
X
create
WithDefault
(
Map
defaultValues
);
@Operation
()
@Operation
()
<
X
>
X
create
(
String
query
);
<
X
>
X
create
(
String
query
);
...
@@ -42,7 +42,7 @@ public interface DefaultTypeOperationProvider {
...
@@ -42,7 +42,7 @@ public interface DefaultTypeOperationProvider {
<
X
extends
BizObject
>
BizList
<
X
>
createList
(
Map
fields
);
<
X
extends
BizObject
>
BizList
<
X
>
createList
(
Map
fields
);
@Operation
()
@Operation
()
<
X
extends
BizObject
>
BizList
<
X
>
findAll
(
Map
fields
);
<
X
extends
BizObject
,
T
extends
BizList
<
X
>>
T
findAll
(
Map
fields
);
@Operation
()
@Operation
()
<
X
extends
BizObject
>
BizList
<
X
>
findAll
(
String
query
);
<
X
extends
BizObject
>
BizList
<
X
>
findAll
(
String
query
);
...
...
src/main/java/logwire/web/bo/proxy/ObjectOperationInterceptor.java
0 → 100644
View file @
cf451604
package
logwire
.
web
.
bo
.
proxy
;
import
logwire.core.bo.handler.Handler
;
import
logwire.core.bo.object.BizObject
;
import
logwire.web.bo.BoRelationDefinition
;
import
net.bytebuddy.implementation.bind.annotation.AllArguments
;
import
net.bytebuddy.implementation.bind.annotation.Origin
;
import
net.bytebuddy.implementation.bind.annotation.SuperMethod
;
import
net.bytebuddy.implementation.bind.annotation.This
;
import
org.slf4j.Logger
;
import
org.slf4j.LoggerFactory
;
import
java.lang.reflect.Method
;
import
java.util.Comparator
;
import
java.util.List
;
import
java.util.function.Function
;
public
class
ObjectOperationInterceptor
{
private
static
final
Logger
logger
=
LoggerFactory
.
getLogger
(
TypeOperationInterceptor
.
class
);
private
BoRelationDefinition
boRelationDefinition
;
public
ObjectOperationInterceptor
(
BoRelationDefinition
boRelationDefinition
)
{
this
.
boRelationDefinition
=
boRelationDefinition
;
}
public
Object
interceptor
(
@This
Object
proxy
,
@Origin
Method
method
,
@SuperMethod
Method
superMethod
,
@AllArguments
Object
[]
args
)
throws
Exception
{
if
(
superMethod
!=
null
)
{
return
superMethod
.
invoke
(
boRelationDefinition
.
getBoClass
().
getSuperclass
().
getField
(
"service"
),
args
);
}
return
doHandler
(
method
,
args
);
}
/**
* 根据methodName执行对应的handler
*/
private
Object
doHandler
(
Method
method
,
Object
[]
args
)
{
Class
<?
extends
BizObject
>
bizClazz
=
boRelationDefinition
.
getBoClass
();
String
operationName
=
method
.
getName
();
logger
.
debug
(
"Execute operation {} start"
,
new
Object
[]{
operationName
});
getHandler
(
operationName
,
boRelationDefinition
.
getTypeOperationEventHandlers
(),
typeOperationEventHandler
->
!
typeOperationEventHandler
.
isAfter
())
.
doBefore
(
bizClazz
,
args
);
Object
result
=
getHandler
(
operationName
,
boRelationDefinition
.
getTypeOperationHandlers
(),
typeOperationHandler
->
typeOperationHandler
.
accept
(
bizClazz
,
args
))
.
execute
(
bizClazz
,
args
);
getHandler
(
operationName
,
boRelationDefinition
.
getTypeOperationEventHandlers
(),
typeOperationEventHandler
->
typeOperationEventHandler
.
isAfter
())
.
doAfter
(
bizClazz
,
result
,
args
);
return
result
;
}
private
<
T
extends
Handler
>
T
getHandler
(
String
operation
,
List
<
T
>
handlers
,
Function
<
T
,
Boolean
>
function
)
{
return
handlers
.
stream
()
.
filter
(
handler
->
operation
.
equals
(
handler
.
getOperation
())
&&
function
.
apply
(
handler
))
.
max
(
Comparator
.
comparing
(
T:
:
getOrder
)).
get
();
}
}
src/main/java/logwire/web/bo/proxy/Proxy.java
View file @
cf451604
package
logwire
.
web
.
bo
.
proxy
;
package
logwire
.
web
.
bo
.
proxy
;
import
com.google.common.collect.Lists
;
import
logwire.core.bo.handler.ObjectOperationHandler
;
import
logwire.core.bo.object.BizObject
;
import
logwire.core.bo.object.BizObject
;
import
logwire.web.bo.BoRelationDefinition
;
import
logwire.web.bo.BoRelationDefinition
;
import
logwire.web.bo.provider.DefaultTypeOperationProvider
;
import
logwire.web.bo.provider.DefaultTypeOperationProvider
;
...
@@ -7,9 +9,11 @@ import net.bytebuddy.ByteBuddy;
...
@@ -7,9 +9,11 @@ import net.bytebuddy.ByteBuddy;
import
net.bytebuddy.implementation.MethodDelegation
;
import
net.bytebuddy.implementation.MethodDelegation
;
import
net.bytebuddy.matcher.ElementMatchers
;
import
net.bytebuddy.matcher.ElementMatchers
;
import
java.util.List
;
import
java.util.Map
;
public
class
Proxy
{
public
class
Proxy
{
/**
/**
*
* 初始化 BO的 service : TypeOperationProvider
* 初始化 BO的 service : TypeOperationProvider
*
*
* @param boRelationDefinition
* @param boRelationDefinition
...
@@ -19,21 +23,41 @@ public class Proxy {
...
@@ -19,21 +23,41 @@ public class Proxy {
* @throws NoSuchFieldException
* @throws NoSuchFieldException
*/
*/
public
static
Object
createTypeOperationProvider
(
BoRelationDefinition
boRelationDefinition
)
throws
IllegalAccessException
,
InstantiationException
,
NoSuchFieldException
{
public
static
Object
createTypeOperationProvider
(
BoRelationDefinition
boRelationDefinition
)
throws
IllegalAccessException
,
InstantiationException
,
NoSuchFieldException
{
Class
<?
extends
BizObject
>
b
ean
Class
=
boRelationDefinition
.
getBoClass
();
Class
<?
extends
BizObject
>
b
o
Class
=
boRelationDefinition
.
getBoClass
();
// 动态生成service
// 动态生成service
// 若直接继承了BizObject,则动态代理继承DefaultTypeOperationProvider,否则继承父类中的service对应的TypeOperationProvider
// 若直接继承了BizObject,则动态代理继承DefaultTypeOperationProvider,
// 否则继承父类中的service对应的TypeOperationProvider
Class
superClass
=
DefaultTypeOperationProvider
.
class
;
Class
superClass
=
DefaultTypeOperationProvider
.
class
;
if
(
b
ean
Class
.
getSuperclass
()
!=
BizObject
.
class
)
{
if
(
b
o
Class
.
getSuperclass
()
!=
BizObject
.
class
)
{
// parent TypeOperationProvider
// parent TypeOperationProvider
superClass
=
b
eanClass
.
getSuperclass
().
getField
(
"seriv
ce"
).
getClass
();
superClass
=
b
oClass
.
getSuperclass
().
getField
(
"servi
ce"
).
getClass
();
}
}
return
new
ByteBuddy
().
subclass
(
superClass
)
return
new
ByteBuddy
().
subclass
(
superClass
)
.
implement
(
boRelationDefinition
.
getTypeOperationProviders
())
.
implement
(
boRelationDefinition
.
getTypeOperationProviders
())
.
method
(
ElementMatchers
.
any
())
.
method
(
ElementMatchers
.
any
())
.
intercept
(
MethodDelegation
.
to
(
new
TypeOperationInterceptor
(
boRelationDefinition
)))
.
intercept
(
MethodDelegation
.
to
(
new
TypeOperationInterceptor
(
boRelationDefinition
)))
.
make
()
.
make
()
.
load
(
beanClass
.
getClassLoader
())
.
load
(
boClass
.
getClassLoader
())
.
getLoaded
().
newInstance
();
}
public
static
Object
createObjectOperationProvider
(
BoRelationDefinition
boRelationDefinition
,
Map
<
String
,
BoRelationDefinition
>
boRelationDefinitions
)
throws
IllegalAccessException
,
InstantiationException
{
Class
<?
extends
BizObject
>
boClass
=
boRelationDefinition
.
getBoClass
();
Class
boSuperClass
=
boClass
.
getSuperclass
();
List
<
ObjectOperationHandler
>
interfaces
=
Lists
.
newArrayList
(
boRelationDefinition
.
getObjectOperationHandlers
());
while
(
boSuperClass
!=
BizObject
.
class
)
{
interfaces
.
addAll
(
boRelationDefinitions
.
get
(
boSuperClass
.
getName
()).
getObjectOperationHandlers
());
boSuperClass
=
boSuperClass
.
getSuperclass
();
}
return
new
ByteBuddy
().
subclass
(
boClass
.
getSuperclass
())
.
implement
(
boRelationDefinition
.
getObjectOperationProviders
())
.
method
(
ElementMatchers
.
any
())
.
intercept
(
MethodDelegation
.
to
(
new
ObjectOperationInterceptor
(
boRelationDefinition
)))
.
make
()
.
load
(
boClass
.
getClassLoader
())
.
getLoaded
().
newInstance
();
.
getLoaded
().
newInstance
();
}
}
}
}
src/main/java/logwire/web/bo/proxy/TypeOperationInterceptor.java
View file @
cf451604
...
@@ -32,7 +32,7 @@ public class TypeOperationInterceptor {
...
@@ -32,7 +32,7 @@ public class TypeOperationInterceptor {
@SuperMethod
Method
superMethod
,
@SuperMethod
Method
superMethod
,
@AllArguments
Object
[]
args
)
throws
Exception
{
@AllArguments
Object
[]
args
)
throws
Exception
{
if
(
superMethod
!=
null
)
{
if
(
superMethod
!=
null
)
{
return
superMethod
.
invoke
(
proxy
,
args
);
return
superMethod
.
invoke
(
boRelationDefinition
.
getBoClass
().
getSuperclass
().
getField
(
"service"
)
,
args
);
}
}
return
doHandler
(
method
,
args
);
return
doHandler
(
method
,
args
);
}
}
...
@@ -62,7 +62,7 @@ public class TypeOperationInterceptor {
...
@@ -62,7 +62,7 @@ public class TypeOperationInterceptor {
private
<
T
extends
Handler
>
T
getHandler
(
String
operation
,
List
<
T
>
handlers
,
Function
<
T
,
Boolean
>
function
)
{
private
<
T
extends
Handler
>
T
getHandler
(
String
operation
,
List
<
T
>
handlers
,
Function
<
T
,
Boolean
>
function
)
{
return
handlers
.
stream
()
return
handlers
.
stream
()
.
filter
(
handler
->
operation
.
equals
(
handler
.
getOperation
())
&&
function
.
apply
(
handler
))
.
filter
(
handler
->
operation
.
equals
(
handler
.
getOperation
())
&&
function
.
apply
(
handler
))
.
m
ax
(
Comparator
.
comparing
(
T:
:
getOrder
)).
get
();
.
m
in
(
Comparator
.
comparing
(
T:
:
getOrder
)).
get
();
}
}
}
}
...
...
src/main/java/logwire/web/bo/session/Session.java
View file @
cf451604
...
@@ -159,10 +159,10 @@ public class Session {
...
@@ -159,10 +159,10 @@ public class Session {
for
(
int
i
=
0
;
i
<
this
.
bizObjects
.
size
();
i
++)
{
for
(
int
i
=
0
;
i
<
this
.
bizObjects
.
size
();
i
++)
{
BizObject
t
=
this
.
bizObjects
.
get
(
i
);
BizObject
t
=
this
.
bizObjects
.
get
(
i
);
if
(
QueryTransactionCode
.
TX_INSERT
.
equals
(
t
.
getTxCode
()))
{
if
(
QueryTransactionCode
.
TX_INSERT
.
equals
(
t
.
getTxCode
()))
{
List
<
BizObject
>
list
=
insertBizObjects
.
get
(
t
.
get
Model
Name
());
List
<
BizObject
>
list
=
insertBizObjects
.
get
(
t
.
get
Bo
Name
());
if
(
list
==
null
)
{
if
(
list
==
null
)
{
list
=
Lists
.
newArrayList
();
list
=
Lists
.
newArrayList
();
insertBizObjects
.
put
(
t
.
get
Model
Name
(),
list
);
insertBizObjects
.
put
(
t
.
get
Bo
Name
(),
list
);
}
}
list
.
add
(
t
);
list
.
add
(
t
);
}
else
{
}
else
{
...
@@ -197,14 +197,14 @@ public class Session {
...
@@ -197,14 +197,14 @@ public class Session {
}
}
otherBizObjects
.
clear
();
otherBizObjects
.
clear
();
}
}
logwire
.
web
.
biz
.
session
.
SessionHolder
.
clear
();
SessionHolder
.
clear
();
}
}
private
void
persistedHeader
(
BizObject
t
,
QueryService
queryService
,
PersistedRecorder
persistedRecorder
)
{
private
void
persistedHeader
(
BizObject
t
,
QueryService
queryService
,
PersistedRecorder
persistedRecorder
)
{
//明细表有增删改时,头表一定要修改(如果不是新增的头表)而不管主表的数据是否有变化
//明细表有增删改时,头表一定要修改(如果不是新增的头表)而不管主表的数据是否有变化
Map
<
String
,
Set
<
BizObject
>>
headers
=
itemHeaderRelations
.
get
(
t
.
get
Model
Name
());
Map
<
String
,
Set
<
BizObject
>>
headers
=
itemHeaderRelations
.
get
(
t
.
get
Bo
Name
());
if
(
headers
!=
null
&&
!
headers
.
isEmpty
())
{
if
(
headers
!=
null
&&
!
headers
.
isEmpty
())
{
Set
<
BizObject
>
set
=
headers
.
get
(
t
.
get
PkValue
());
Set
<
BizObject
>
set
=
headers
.
get
(
t
.
get
Id
());
if
(
set
==
null
||
set
.
isEmpty
())
{
if
(
set
==
null
||
set
.
isEmpty
())
{
return
;
return
;
}
}
...
@@ -222,12 +222,10 @@ public class Session {
...
@@ -222,12 +222,10 @@ public class Session {
private
void
persistedInsert
(
BizObject
t
,
QueryService
queryService
,
PersistedRecorder
persistedRecorder
)
{
private
void
persistedInsert
(
BizObject
t
,
QueryService
queryService
,
PersistedRecorder
persistedRecorder
)
{
BizObjectAgent
agent
=
getOperableAgent
(
t
);
BizObjectAgent
agent
=
getOperableAgent
(
t
);
TenantUser
currentUser
=
SecurityUtil
.
currentUser
();
TenantUser
currentUser
=
SecurityUtil
.
currentUser
();
if
(
BizObjectStatus
.
NEW_SAVE
.
equals
(
t
.
get
BizObjectStatus
()))
{
if
(
BizObjectStatus
.
NEW_SAVE
.
equals
(
t
.
get
TxCode
()))
{
agent
.
setInternal
(
QueryTransactionCode
.
TX_FIELD_NAME
,
QueryTransactionCode
.
TX_INSERT
);
agent
.
setInternal
(
QueryTransactionCode
.
TX_FIELD_NAME
,
QueryTransactionCode
.
TX_INSERT
);
// persistedBefore(t, itemHeaderRelations, queryService); TODO 新增明细表前先新增主表
// persistedBefore(t, itemHeaderRelations, queryService); TODO 新增明细表前先新增主表
actionContext
.
emit
(
t
.
getOperableName
(),
BuiltinEventNames
.
BIZ_INSERT_BEFORE
.
name
(),
currentUser
.
getDomain
(),
t
);
queryService
.
insert
(
t
.
getBoName
(),
t
.
toMap
());
queryService
.
insert
(
t
.
getModelName
(),
t
.
toMap
());
actionContext
.
emit
(
t
.
getOperableName
(),
BuiltinEventNames
.
BIZ_INSERT_AFTER
.
name
(),
currentUser
.
getDomain
(),
t
);
persistedRecorder
.
accept
(
t
);
persistedRecorder
.
accept
(
t
);
persistedHeader
(
t
,
queryService
,
persistedRecorder
);
persistedHeader
(
t
,
queryService
,
persistedRecorder
);
}
}
...
@@ -351,15 +349,15 @@ public class Session {
...
@@ -351,15 +349,15 @@ public class Session {
* @param fieldName
* @param fieldName
*/
*/
public
void
cache
(
BizObject
t
,
String
fieldName
)
{
public
void
cache
(
BizObject
t
,
String
fieldName
)
{
Object
pkValue
=
t
.
get
PkValue
();
Object
pkValue
=
t
.
get
Id
();
if
(
pkValue
==
null
)
{
if
(
pkValue
==
null
)
{
return
;
return
;
}
}
//拿到存放某个 model 的主键缓存值的 map
//拿到存放某个 model 的主键缓存值的 map
Map
<
String
,
Map
<
String
,
Set
<
Object
>>>
modelMap
=
pkCache
.
get
(
t
.
get
Model
Name
());
Map
<
String
,
Map
<
String
,
Set
<
Object
>>>
modelMap
=
pkCache
.
get
(
t
.
get
Bo
Name
());
if
(
modelMap
==
null
)
{
if
(
modelMap
==
null
)
{
modelMap
=
Maps
.
newHashMap
();
modelMap
=
Maps
.
newHashMap
();
pkCache
.
put
(
t
.
get
Model
Name
(),
modelMap
);
pkCache
.
put
(
t
.
get
Bo
Name
(),
modelMap
);
}
}
//拿到存放通过某个 model 的 某个字段查询得到的主键后缓存值的 map
//拿到存放通过某个 model 的 某个字段查询得到的主键后缓存值的 map
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment