JSF-Ders 12 Veritabanı Veri Güncelleme-Datatable Veri Güncelleme
Merhaba arkadaşlar bu yazımda size veritabanında veri güncelleme ve datatable üzerinde veri güncellemeden bir örnek ile bahsedeceğim. Öncelikli olarak jsf ‘ rendered değerinden bahsetmek istiyorum.
JSF Rendered nedir? Rendered Kullanımı?
Rendered bileşenin sitede görünüp görünmemesini ayarlayan özelliktir. Rendered değer olarak true yada false alır.Eğer true alırsa o bileşen sitede görünür, eğer false alırsa o bileşen sitede görünmez ve kullanılmaz.
Şimdi örneğe geçebiliriz:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html"> <h:head></h:head> <body> <h:form> <h:dataTable value="#{veritabani.verileriCek()}" var="bilgi"> <h:column> <f:facet name="header">İsim</f:facet> <h:outputText value="#{bilgi.isim}" rendered="#{!bilgi.gorunurluk}" /> <h:inputText value="#{veritabani.nesne.isim}" rendered="#{bilgi.gorunurluk}"/> </h:column> <h:column> <f:facet name="header">Soyisim</f:facet> <h:outputText value="#{bilgi.soyisim}" rendered="#{!bilgi.gorunurluk}"/> <h:inputText value="#{veritabani.nesne.soyisim}" rendered="#{bilgi.gorunurluk}"/> </h:column> <h:column> <f:facet name="header">Maaş</f:facet> <h:outputText value="#{bilgi.maas}" rendered="#{!bilgi.gorunurluk}"/> <h:inputText value="#{veritabani.nesne.maas}" rendered="#{bilgi.gorunurluk}"/> </h:column> <h:column> <f:facet name="hader">İşlemler</f:facet> <h:commandButton action="#{veritabani.duzenle(bilgi)}" value="Düzenle" rendered="#{!bilgi.gorunurluk}" /> <h:commandButton action="#{veritabani.kaydet(bilgi)}" value="Kaydet" rendered="#{bilgi.gorunurluk}" /> </h:column> </h:dataTable> </h:form> </body> </html> |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 |
package com.teknokafe; public class Bilgiler { private String isim=""; private String soyisim=""; private int maas; private boolean gorunurluk=false; public boolean isGorunurluk() { return gorunurluk; } public void setGorunurluk(boolean gorunurluk) { this.gorunurluk = gorunurluk; } public String getIsim() { return isim; } public void setIsim(String isim) { this.isim = isim; } public String getSoyisim() { return soyisim; } public void setSoyisim(String soyisim) { this.soyisim = soyisim; } public int getMaas() { return maas; } public void setMaas(int maas) { this.maas = maas; } } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 |
package com.teknokafe; import java.io.Serializable; import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.SQLException; import java.util.ArrayList; import java.util.Iterator; import java.util.List; import javax.faces.bean.ManagedBean; import javax.faces.bean.SessionScoped; import com.mysql.jdbc.PreparedStatement; import com.sun.scenario.effect.Blend; @ManagedBean @SessionScoped public class Veritabani implements Serializable { private List<Bilgiler>liste=new ArrayList<Bilgiler>(); Connection connection=null; PreparedStatement pre=null; Bilgiler nesne=new Bilgiler(); public Bilgiler getNesne() { return nesne; } public void setNesne(Bilgiler nesne) { this.nesne = nesne; } public void baglanti() { try { Class.forName("com.mysql.jdbc.Driver"); connection=DriverManager.getConnection("jdbc:mysql://localhost:3306/test","root","19961903"); } catch (Exception e) { System.err.println(" Bağlantıda Hata Var :"+e.toString()); } } public List<Bilgiler>verileriCek() { baglanti(); try { pre=(PreparedStatement) connection.prepareStatement("Select * from maas"); ResultSet resultSet; resultSet=pre.executeQuery(); liste.clear(); while(resultSet.next()) { Bilgiler bilgiler=new Bilgiler(); bilgiler.setIsim(resultSet.getString("isim")); bilgiler.setSoyisim(resultSet.getString("soyisim")); bilgiler.setMaas(resultSet.getInt("maas")); bilgiler.setGorunurluk(resultSet.getBoolean("gorunurluk")); liste.add(bilgiler); } } catch (Exception e) { System.out.println("Hata Var :"+e.toString()); } return liste; } public void duzenle(Bilgiler bilgiler) { setIsim2(bilgiler.getIsim()); setSoyisim2(bilgiler.getSoyisim()); try { pre=(PreparedStatement) connection.prepareStatement("update maas SET gorunurluk=true where isim=? and soyisim=?"); pre.setString(1, bilgiler.getIsim()); pre.setString(2, bilgiler.getSoyisim()); pre.executeUpdate(); nesne.setIsim(bilgiler.getIsim()); nesne.setSoyisim(bilgiler.getSoyisim()); nesne.setMaas(bilgiler.getMaas()); } catch (Exception e) { System.out.println("Hata var :"+e.toString()); } } public void kaydet(Bilgiler bilgiler) { try { pre=(PreparedStatement) connection.prepareStatement("Update maas SET isim=? , soyisim=? , maas=? , gorunurluk=false where isim=? and soyisim=?"); pre.setString(1, nesne.getIsim()); pre.setString(2, bilgiler.getSoyisim()); pre.setInt(3, bilgiler.getMaas()); System.out.println("Bilgilerrr :"+nesne.getIsim()); pre.setString(4,getIsim2()); pre.setString(5 , getSoyisim2()); pre.executeUpdate(); } catch (Exception e) { System.out.println("Hata Var Burada :"+e.toString()); } } private static String isim2,soyisim2; public String getIsim2() { return isim2; } public void setIsim2(String isim2) { this.isim2 = isim2; } public String getSoyisim2() { return soyisim2; } public void setSoyisim2(String soyisim2) { this.soyisim2 = soyisim2; } } |
İlk Hali :
Düzenle butonuna bastıktan sonra :
Kaydet butonuna bastıktan sonra :
Görüldüğü üzere datatable de güncelleme işlemini yapmış olduk… Sonraki yazılarımızda görüşmek üzere…
Çok üstten anlatıyorsunuz biraz daha açıklayıcı olun.
Zaten gerekli açıklamalar yapıldı..Anlamadığınız bir nokta varsa yorum yaparak sorabilirsiniz…