2018年8月13日
摘要: create sequence seq_XXXX; 在数据库里面运行 XXXX表示表名 阅读全文
posted @ 2018-08-13 21:31 文种玉 阅读(128) 评论(0) 推荐(0) 编辑
  2018年4月24日
摘要: 碰到这个问题,可以确定的说:没有引入相关的JS文件,比如没有引入jQuery文件等, 阅读全文
posted @ 2018-04-24 15:36 文种玉 阅读(170) 评论(0) 推荐(0) 编辑
摘要: 1.进入到tomcat中的bin目录下面 执行:cd /usr/local/tomcat7/bin 2.关闭tomcat服务器 执行:./shutdown.sh 3.开启tomcat服务器 执行:./startup.sh 阅读全文
posted @ 2018-04-24 15:32 文种玉 阅读(315) 评论(0) 推荐(0) 编辑
  2018年4月2日
摘要: 本文转载  https://blog.csdn.net/happylee6688/article/details/43968549 阅读全文
posted @ 2018-04-02 17:10 文种玉 阅读(847) 评论(0) 推荐(0) 编辑
摘要: 本文转自 https://blog.csdn.net/happylee6688/article/details/43965609 阅读全文
posted @ 2018-04-02 14:42 文种玉 阅读(478) 评论(0) 推荐(0) 编辑
  2018年3月27日
摘要: 解决方法 像类似的启动项目报错,一般情况都在web.xml里面: 此时,注意 java.lang.IllegalArgumentException: Invalid<url-pattern> * in servlet mapping 然后再去web.xml里面看ulr-pattern 于是:在 *  阅读全文
posted @ 2018-03-27 14:54 文种玉 阅读(2137) 评论(0) 推荐(0) 编辑
  2018年3月19日
摘要: 严重: Exception sending context initialized event to listener instance of class org.springframework.web.context.ContextLoaderListenerorg.springframework 阅读全文
posted @ 2018-03-19 18:30 文种玉 阅读(1975) 评论(0) 推荐(0) 编辑
  2018年3月14日
摘要: 阅读全文
posted @ 2018-03-14 15:37 文种玉 阅读(139) 评论(0) 推荐(0) 编辑
摘要: import net.sf.json.JSONArray; //用于集合或数组 import net.sf.json.JSONObject; //用于对象 JSONObject object = new JSONObject(); 1.把java 对象列表转换为json对象数组,并转为字符串 JSO 阅读全文
posted @ 2018-03-14 15:30 文种玉 阅读(13864) 评论(0) 推荐(0) 编辑
摘要: 导包:mail.jar import java.util.Properties; import javax.mail.Message; import javax.mail.Message.RecipientType; import javax.mail.MessagingException; imp 阅读全文
posted @ 2018-03-14 15:26 文种玉 阅读(208) 评论(0) 推荐(0) 编辑