先补上昨天注册页面的验证码代码: 1 public void doGet(HttpServletRequest request, HttpServletResponse response) 2 throws ServletException, IOException { 3 ...
分类:
其他好文 时间:
2014-08-09 22:58:09
阅读次数:
372
1、例如SSH中在数据库连接失败时进行增删查改,会出现org.springframework.transaction.CannotCreateTransactionException的问题(1)、在可能出现错误的方法throws public Session getSession() thro...
分类:
其他好文 时间:
2014-08-09 18:08:58
阅读次数:
174
public static String genCSR(String subject, String alg,String provider) throws InvalidKeyException, NoSuchAlgorithmException, No...
分类:
其他好文 时间:
2014-08-08 12:35:55
阅读次数:
5055
Employee类、Department类、SessionFactoryTools类、Employee.hbm.xml文件、Department.hbm.xml文件、Hibernate.cfg.xml文件 都与12中的相同。
持久化层中的代码:
// 使用QBC方式查询:Query By Criteria
@Test
public void testQBC() throws Excepti...
分类:
系统相关 时间:
2014-08-07 13:09:30
阅读次数:
262
public Test() throws RepletException { try { System.out.println("Test this Project!") } catch (Exception e) { throw new Exception(e...
分类:
其他好文 时间:
2014-08-06 21:46:32
阅读次数:
196
public static Workbook create(InputStream in) throws IOException,InvalidFormatException { if (!in.markSupported()) { in = new PushbackInputStream(i...
分类:
其他好文 时间:
2014-08-06 18:09:01
阅读次数:
2075
实例如下:public String getReportURL() throws Exception { String reportURL = parameterMap.get("showPageUrl").toString() + "showPageNum=1"; Iterator it = pa...
分类:
其他好文 时间:
2014-08-06 17:37:11
阅读次数:
180
1. 有了上一篇的Mongo后,连接数据库我们还需要更多的信息,比如数据库名字,用户名和密码等。我们可以继续来配置MongoDbFactory的实例。public interface MongoDbFactory { DB getDb() throws DataAccessException; .....
分类:
数据库 时间:
2014-08-06 01:21:20
阅读次数:
282
1. 通过Java based bean metadata@Configurationpublic class AppConfig {public @Bean Mongo mongo() throws UnknownHostExceptioin {return new Mongo("localhos...
分类:
数据库 时间:
2014-08-05 22:28:10
阅读次数:
172
public class DownloadAction extends ActionSupport{ // 接收文件名 private String filename; @Override public String execute() throws Exceptio...
分类:
其他好文 时间:
2014-08-05 22:13:20
阅读次数:
212