bug fix
This commit is contained in:
		
							parent
							
								
									6c05d35322
								
							
						
					
					
						commit
						9141632902
					
				
							
								
								
									
										2
									
								
								pom.xml
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								pom.xml
									
									
									
									
									
								
							@ -13,7 +13,7 @@
 | 
				
			|||||||
    <groupId>com.loafle.overflow</groupId>
 | 
					    <groupId>com.loafle.overflow</groupId>
 | 
				
			||||||
    <artifactId>commons-java</artifactId>
 | 
					    <artifactId>commons-java</artifactId>
 | 
				
			||||||
    <packaging>jar</packaging>
 | 
					    <packaging>jar</packaging>
 | 
				
			||||||
    <version>1.0.100-SNAPSHOT</version>
 | 
					    <version>1.0.101-SNAPSHOT</version>
 | 
				
			||||||
    <name>com.loafle.overflow.commons-java</name>
 | 
					    <name>com.loafle.overflow.commons-java</name>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    <properties>
 | 
					    <properties>
 | 
				
			||||||
 | 
				
			|||||||
@ -21,9 +21,10 @@ public class Member {
 | 
				
			|||||||
  @Column(name = "EMAIL", nullable = false, length = 50)
 | 
					  @Column(name = "EMAIL", nullable = false, length = 50)
 | 
				
			||||||
  private String email;
 | 
					  private String email;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  @JsonIgnore
 | 
				
			||||||
  @Basic
 | 
					  @Basic
 | 
				
			||||||
  @Column(name = "PW", nullable = true, length = 64)
 | 
					  @Column(name = "PW", nullable = true, length = 64)
 | 
				
			||||||
  private transient String pw;
 | 
					  private String pw;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  @Basic
 | 
					  @Basic
 | 
				
			||||||
  @Column(name = "NAME", nullable = true, length = 50)
 | 
					  @Column(name = "NAME", nullable = true, length = 50)
 | 
				
			||||||
@ -75,12 +76,10 @@ public class Member {
 | 
				
			|||||||
    this.email = email;
 | 
					    this.email = email;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  @JsonIgnore
 | 
					 | 
				
			||||||
  public String getPw() {
 | 
					  public String getPw() {
 | 
				
			||||||
    return pw;
 | 
					    return pw;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  @JsonIgnore
 | 
					 | 
				
			||||||
  public void setPw(String pw) {
 | 
					  public void setPw(String pw) {
 | 
				
			||||||
    this.pw = pw;
 | 
					    this.pw = pw;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user