- 博客(31)
- 资源 (8)
- 问答 (1)
- 收藏
- 关注
原创 手把手教你从0搭建springboot+vue+mysql前后端分离毕设项目
手把手教你从0搭建springboot+vue+mysql前后端分离毕设项目
2024-04-01 20:52:41
175
原创 spring mvc 发送邮件中部分异常处理
java.lang.NoClassDefFoundError: com/sun/mail/util/MessageRemovedIOExceptioncom.sun.mail.smtp.SMTPSenderFailedException: 553 Mail from must equal authorized user
2017-07-11 18:54:05
2063
1
原创 MySQL5.7 The server time zone value 异常处理
com.mysql.cj.core.exceptions.InvalidConnectionAttributeException: The server time zone value '�й���ʱ��' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration proper
2017-05-05 13:11:17
10745
原创 hessian接口测试案例
hessian接口测试案例:String url = "http://localhost:9090/admin/remote/****";HessianProxyFactory factory = new HessianProxyFactory();TestService testService = (TestService) factory.create(TestServ
2017-03-30 15:25:11
2123
原创 Exception in thread "main" java.lang.UnsupportedClassVersionError: 问题
maven项目打包时报错:Exception in thread "main" java.lang.UnsupportedClassVersionError: org/apache/maven/cli/MavenCli : Unsupported major.minor version 51.0
2016-06-22 16:37:33
4214
1
转载 java 中对url的编码与解码
找了好一会,终于找到一个比较可靠的,还没仔细研究!http://www.cnblogs.com/shishm/articles/1614407.html
2016-04-16 16:20:43
450
原创 The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path
创建好的webproect项目报错,打开是jsp页面报The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path,是因为web容器没有加载进来,解决方案:项目右键build path →configure build path... → add library... 选择:ne
2016-03-24 17:32:42
331
原创 chrome加载本地文件
在chrome快捷方式=》目标后面加入 --allow-file-access-from-files后即可加载本地文件(例:本地html的跳转);
2015-11-04 22:33:53
1282
原创 eclipse中tomcat不能部署web项目问题
应该是tomcat版本不支持问题,以下是解决方法之一:打开项目所在目录,在.settings文件夹中打开,将3.0改为2.4,保存,关闭,刷新项目,再次创建服务。就OK了。
2015-07-11 09:59:09
606
原创 java计算时间差
//计算时间差public static String getDatePoor(Date beginDate,Date endDate){ long poor = (endDate.getTime()-beginDate.getTime())/1000; long day = poor/(24*60*60); long hour = poor/(60*60)-day*24; lon
2015-07-11 09:32:55
381
原创 css省略超出的文字,用...代替
先设置文字不换行:white-space:nowrap;(固定宽度或最大宽度是必须的),设置超出的文字隐藏并用...代替:text-overflow:ellipsis,overflow:hidden,如果是在table td 中,要先设置table的样式为:table-layout:fixed.
2015-05-06 10:27:59
994
原创 css背景透明度
css元素设置透明度,1:opacity:0.5,此方法可以设置透明度,但是在此里面的元素都跟着有了透明度了,2:background-color:rgba(243, 243, 243, 0.75);最后一个参数即为透明度。
2015-02-05 13:04:33
610
原创 css文件中引入CSS文件、js文件中引入js文件
CSS文件中引入CSS文件:@import url("style.css");js中引入js文件:document.write("");
2015-01-12 18:45:02
1071
原创 html5中textarea给placeholder设置颜色
data-role="none" class="feedbackcontent" id="feedbackcontent" name="feedbackcontent" placeholder="请输入您的意见和反馈(必填)">#feedbackcontent::-webkit-input-placeholder{color:red;}
2014-12-23 19:54:27
26919
1
spring messageSource结合ehcache demo
2017-07-06
eclipse中查看class文件插件
2016-03-23
web app 页面有滚动时 组件就乱了
2015-05-14
TA创建的收藏夹 TA关注的收藏夹
TA关注的人