- 浏览: 562605 次
- 性别:
- 来自: 长沙
最新评论
-
yubao2008:
[size=x-small]为什么我也这样试了, 就是没有生效 ...
javax.servlet.http.HttpServletResponse 得到 status_code -
chenrl:
...
SpringMVC杂记(十五) spring-mvc controller 的切面 -
LONGTENGLONG:
你好,这样配置的,得到的集合为空,是什么原因?
apache-shiro杂记(一) 统计在线用户数目 -
xiafengfeiwu:
[flash=200,200][url]引用[/url][/f ...
apache-shiro 学习笔记 -
3108493554:
你好 ,有些问题想请教下,加下我qq310849354,你这上 ...
SpringMVC杂记(十二) 自定义Interceptor从Active Directory得到域信息
文章列表
Spring 集成 JPA(hibernate实现)
1)数据源 c3p0
<context:property-placeholder
location="classpath:cn/com/legendapl/persistence/config/database.properties" />
<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource" destroy-method="close"&g ...
".rar"="rar/zip"
".zip"="rar/zip"
".*"="application/octet-stream"
".001"="application/x-001"
".301"="application/x-301"
".323"="text/h323"
".906"="application/x-906& ...
----------------------------------------------------------
Java EE 6 Technologies
----------------------------------------------------------
JSR 316 Java Platform, Enterprise Edition 6 (Java EE 6)
----------------------------------------------------------
Web Services Technologies
-------------- ...
有可能出于某些原因,我们需要把一些jar文件安装到本地maven仓库的。
mvn install:install-file -Dfile=<path-to-file> -DgroupId=<group-id> -DartifactId=<artifact-id> -Dversion=<version> -Dpackaging=<packaging>
注意:path-to-file中路径分隔符写成正斜杠(/) windows os 也是如此
删除更简便,到本地仓库把目录删除即可。
感谢CSDN的magong网友
public class Main {
/**
* Displays the number of processors available in the Java Virtual Machine
*/
public void displayAvailableProcessors() {
Runtime runtime = Runtime.getRuntime();
int nrOfProcessors = runtime.availableProcessors( ...
Spring与Quartz的集成
applicationContext.xml
<bean id="jobDetail"
class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">
<property name="targetObject" ref="job" />
<property name="targetMethod" value=" ...
字段允许值允许的特殊字符秒0-59, - * / 分0-59, - * / 小时0-23, - * / 日期1-31, - * ? / L W C 月份1-12或者JAN-DEC, - * / 星期1-7 或者 SUN-SAT , - * ? / L C # 年(可选)1970-2099 , - * /
星期的缩写
* SUN,MON,TUE,WED,THU,FRI,SAT
月份的英文缩写
* JAN,FEB,MAR,A ...
昨天发现在JSP中的指令总是被eclipse提示“Undefined attribute name "isELIgnored"”
<%@ page isELIgnored="false" %>
经过研究发现解决之道很简单,打开部署描述符。
把servlet版本号改为2.4或以上即可。
既
<web-app id="WebApp_9" version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi=& ...
settings.xml对于maven来说相当于全局性的配置,用于所有的项目。
在maven2中存在两个settings.xml。
一个是全局配置
它位于maven2的安装目录conf下面。
对于团队设置,保持一致的定义是关键,所以这个配置就作为团队共同的配置文件 ...
为eclipse 3.6.2安装maven插件
一、下载eclipse 3.6.2并解压到机器上。
二、按顺序安装四个插件
gef:
http://download.eclipse.org/tools/gef/updates/interim/
subclipse
http://subclipse.tigris.org/update_1.6.x
maven2-core
http://m2eclipse.sonatype.org/sites/m2e
maven2-extras
http://m2eclipse.sonatype.org/sites/m2e-extras
(安装这些插件最好不 ...
1)首先要确保MySQL服务器允许远程访问。
首先登录
C:\>mysql -u root -p
Enter password: ****
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1 to server version: 5.0.15-nt
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
查看mysql库下的user表
user mysql;
mysql& ...
使用Apache Commons-email发送电子邮件
所需要的jar包
commons-emai-1.2.jar
commons-logging-1.1.1.jar
mail.jar
如果JDK版本过低还需要
activation.jar
发送简单邮件
@Test
public void sendSimpleMail() throws Exception {
SimpleEmail email = new SimpleEmail();
email.setHostName("smtp.gmail.com"); // 发送服务器
e ...
本文为转载且为截取的片段,如有需要请访问原帖
待解析的xml
<?xml version="1.0"?>
<academy name="JAcademy">
<student name="JavaBoy" division="A">
<course>
<id>C1</id>
<name>JSP</name>
</course>
<course>
...
web.xml
<servlet>
<servlet-name>ValidationCodeServlet</servlet-name>
<servlet-class>org.yingzhuo.servlet.ValidationCodeServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>ValidationCodeServlet</servlet-name>
<url-pa ...
版本号 代号 诞生日期
-------------------------------------------------------------------------
JDK 1.0 (none) 1996.01.23
JDK 1.1 (none) 1997.01.18
JDK 1.1.4 Sparkler ...