이 글에서는 주로 Java의 JFinal getModel 메소드 관련 정보와 데이터베이스 사용 문제에 대한 해결 방법을 소개합니다. 도움이 필요한 친구는
JFinal getModel 메소드(모델 가져오기 페이지에서)를 참조할 수 있습니다. form Object ) + 데이터베이스 저장 문제
1. getmodel 메소드
1. JConfig 구성 클래스의 데이터베이스 매핑(저장됨) 이 구성은 arp의 데이터베이스)
public void configPlugin(Plugins me) { C3p0Plugin cp = null; try { cp = new C3p0Plugin( "jdbc:mysql://localhost:3306/huaxuetang?useUnicode=true&characterEncoding=utf-8", "root", "1234"); System.out.println("成功"); } catch (Exception e) { System.out.println("连接失败"); } me.add(cp); ActiveRecordPlugin arp = new ActiveRecordPlugin(cp); arp.setShowSql(true); me.add(arp); arp.addMapping("bse_user", "id", User.class); arp.addMapping("grade_one_choice","id",GOneQuestion.class); }
에 필요합니다. addMapping()에는 세 가지 매개변수가 있습니다. 첫 번째는 데이터베이스 테이블 이름, 두 번째는 기본 키, 세 번째는 해당 모델 클래스 이름
2. 🎜>
import com.jfinal.plugin.activerecord.Model; public class GOneQuestion extends Model<GOneQuestion>{ private static final long serialVersionUID = 1L; // 声明一个全局操作的变量 public final static GOneQuestion questiondao = new GOneQuestion(); }
<input type="text" name="gOneQuestion.A" class="required" maxlength="50" style="width: 250px"/>
참고: 첫 글자만 소문자로 되고 나머지는 변경되지 않습니다.4.getmodel gets
GOneQuestion question =getModel(GOneQuestion.class);
jfianl 문서:
사용자에 정의된 public static final User dao 객체는 전역적으로 공유되며 데이터베이스쿼리에만 사용할 수 있습니다. 데이터 운반 개체에는 사용할 수 없습니다. 데이터 전달은 new User().set(…)을 사용하여 구현되어야 합니다. 은 다음을 의미합니다. 예를 들어, 이 예에서 모델이 정의한 질문은 쿼리에만 사용할 수 있으며
데이터 삽입에는 사용할 수 없습니다. 데이터 삽입 시: (잘못 사용 시 기본키 중복 발생)
new GOneQuestion() .set("book", question.getStr("book")) .save();
데이터 추가 시: GOneQuestion. 질문다오.메소드명
위 내용은 JFinal getModel 메소드와 Java의 데이터베이스 사용법에 대한 문제점 예에 대한 자세한 설명의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!