摘要:
@Autowired相当于Spring自动给你进行了new一个对象将这个对象放入你的注解所在类里面。 @service 是可以让IOC容器对于你注解的类可以在容器中生成相应的bean实例 便于我们进行日后的使用 阅读全文
摘要:
刚已经说了,Bootstrap为表格不同的样式风格提供了不同的类名,主要包括: ☑ .table:基础表格 ☑ .table-striped:斑马线表格 ☑ .table-bordered:带边框的表格 ☑ .table-hover:鼠标悬停高亮的表格 ☑ .table-condensed:紧凑型表 阅读全文
摘要:
对于泛型只是在编译时候对于里面进行查错进行设置的一个机制。 阅读全文
摘要:
package cn.lonecloud.reflect; import java.lang.reflect.Constructor; import java.lang.reflect.Field; import java.lang.reflect.Method; import org.junit.Test; public class ClassUtil { /** * 获取该类的信... 阅读全文
摘要:
80:http; 21:ftp; 23:telnet; 阅读全文
摘要:
index.jsp choose.jsp redirect.jsp set.jsp 阅读全文
摘要:
response和request的setCharacterEncoding 一、request.setCharacterEncoding():是设置从request中取得的值或从数据库中取出的值。 指定后可以通过getParameter()则直接获得正确的字符串,如果不指定,则默认使用iso8859 阅读全文
摘要:
阅读全文
摘要:
URLEncoder.encode("username", "UTF-8"); URLDecoder.decode("123", "UTF-8"); //解决cookies存储中文报错问题 阅读全文
摘要:
xml文档 java文件 阅读全文