Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RegApp
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Christian Kleifges
RegApp
Commits
a83ba099
Commit
a83ba099
authored
9 years ago
by
Michael Simon
Browse files
Options
Downloads
Patches
Plain Diff
Change Datatype for image_entity to @Basic instead of @Lob
parent
c1b45729
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bwreg-jpa/src/main/java/edu/kit/scc/webreg/entity/ImageDataEntity.java
+2
-2
2 additions, 2 deletions
.../main/java/edu/kit/scc/webreg/entity/ImageDataEntity.java
with
2 additions
and
2 deletions
bwreg-jpa/src/main/java/edu/kit/scc/webreg/entity/ImageDataEntity.java
+
2
−
2
View file @
a83ba099
...
...
@@ -10,9 +10,9 @@
******************************************************************************/
package
edu.kit.scc.webreg.entity
;
import
javax.persistence.Basic
;
import
javax.persistence.Column
;
import
javax.persistence.Entity
;
import
javax.persistence.Lob
;
import
javax.persistence.Table
;
@Entity
(
name
=
"ImageDataEntity"
)
...
...
@@ -22,7 +22,7 @@ public class ImageDataEntity extends AbstractBaseEntity {
private
static
final
long
serialVersionUID
=
1L
;
@Column
(
name
=
"image_data"
)
@
Lob
@
Basic
private
byte
[]
data
;
public
byte
[]
getData
()
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment