下面是bean的Iclass源
package com.springination.springidol;
import com.itextpdf.text.pdf.PdfStructTreeController.returnType;
public class Instrumentalist implements Performer {
private S……继续阅读 »
10年前 (2016-03-19) 2003浏览
1个赞
使用的是jre1.8 spring4.0 让本人百思不得其解的是只要springmvc.xml中出现了
<context:component-scan base-package=”com.ssm.controller”></context:component-scan> 这个标签 就肯定会报下面的这个错……继续阅读 »
10年前 (2016-03-19) 1031浏览
0个赞
byte[] ds=//
OutputStream os=response.getOutputStream();
String contentType="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet";//application/vnd.ms-excel
……继续阅读 »
10年前 (2016-03-19) 2497浏览
0个赞
D:\WS\Dervice\src\com\lining\vmservice\mapper>java -jar mybatis-generator-co
re-1.3.0.jar -configfile generatorConfig.xml
Exception in thread "main" java.lang.StringIndexOutOf……继续阅读 »
10年前 (2016-03-19) 1443浏览
0个赞
import java.security.GeneralSecurityException;
import java.util.Properties;
import javax.mail.Authenticator;
import javax.mail.Message;
import javax.mail.MessagingException;
impor……继续阅读 »
10年前 (2016-03-19) 1494浏览
0个赞
这是一个复选框批量处理问题,在jsp页面中,假如加上dataType:”json”, 数据返回的结果就是操作失败,虽然失败但是后台数据是确实执行了,所以这个失败的状态是假的,原因是已经达到了目的。假如去掉dataType:”json”, 就是返回是成功,但是被选中的复选框只会执行两条,明显是错误的。本人想问的是……继续阅读 »
10年前 (2016-03-19) 1331浏览
0个赞
class Student{
private String name;
private int StuNum;
private int score;
Student(String name,int StuNum,int score){
this.name=name;
this.StuNum=StuNum;
this.score=score;
}
publi……继续阅读 »
10年前 (2016-03-19) 1210浏览
0个赞
这个错是什么原因,求高手
解决方案
50
对比你的这个map文件跟你的sql查询语句,参数类型什么的,能否匹配
50
错误信息报的sql语句错,把完整的sql语句粘贴出来,检查一下。(你的截图不全。)
……继续阅读 »
10年前 (2016-03-19) 1560浏览
0个赞
从N个数中随机取M个不同的数进行求和,返回这个求和集合中的小于Y的最大值。
例如:从50, 55, 56, 57, 58,(N = 5),中取3个数(M=3),求和的集合中小于163的最大值是多少?
和集合为:
[161, 162, 163, 163, 164, 165, 168, 169, 170, 171]
返回结果:162
解决方案
10
本人竟然没看……继续阅读 »
10年前 (2016-03-19) 1785浏览
0个赞