- 浏览: 135359 次
- 性别:
- 来自: 重庆
最新评论
-
spp_1987:
然后没了?
axis2对应jar的maven配置 -
tmbfe:
有用,谢谢!!
在Eclipse中创建maven项目出现的环境警告 j2se-1.5 -
fuyu_oo:
多谢多谢多谢
在Eclipse中创建maven项目出现的环境警告 j2se-1.5 -
haiou33:
麻烦问下 你这问题解决没 ,我先也出现了这个问题,还没找到合适 ...
axis2 File "/axis2-web/listSingleService.jsp" not found -
sachxp:
感谢PO主,帮了我大忙,特意登录感谢。@xieyongwei ...
在Eclipse中创建maven项目出现的环境警告 j2se-1.5
文章列表
防止资源文件被spring MVC拦截
- 博客分类:
- spring
在web.xml中添加下面这段代码:
<servlet-mapping>
<servlet-name>default</servlet-name>
<url-pattern>*.jpg</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>default</servlet-name>
<url-pattern>* ...
文章转自:http://blog.csdn.net/afgasdg/article/details/12757433" target="_blank">http://blog.csdn.net/afgasdg/article/details/12757433
问题描述:
使用Eclipse自带的Maven插件创建Web项目时报错:
Could not resolve archetype org.apache.maven.archetypes:maven-archetype-webapp:RELEASE from any of the co ...
今晚开始一个项目开发。
所要用到的技术(暂定):
1.springMVC
2.spring security
3.mybatis
4.extjs
5.maven
数据库先用mysql吧。
希望能从这个项目中学到更多的东西。
============2013-12-04 22:31=======
1.去官网中下载最新的solr(本例solr为4.5.1)并解压
下载地址:http://www.apache.org/dyn/closer.cgi/lucene/solr/4.5.1
2.解压后将/example/webapps/下的solr.war放入某个sevlet容器 (本例为tomcat7)
3.将solr.war复制到webapp目录,将solr-4.5.1\example\solr整个目录复制到{tomcat}目录,
4.然后修改tomcat7中的bin目录下的catalina.bat,在catalina.bat文件中找到okhome下加上set JAVA_OPTS=% ...
今天启动jetty服务器的时候报下面的错误:
F:\jetty>java -jar start.jar --help
Exception in thread "main" java.lang.UnsupportedClassVersionError: org/eclipse/j
etty/start/Main : Unsupported major.minor version 51.0
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassL ...
@echo off
echo ========================================
echo **
echo **一键设置jdk环境变量
echo **jdk7:C:\Program Files\Java\jdk1.7.0_25
echo **1.首先删除JAVA_HOME的环境变量
echo **2.创建JAVA_HOME的环境变量
echo **3.在path 后面添加%JAVA_HOME%\bin
echo **author jynine
echo **
echo =============开始配置===================
w ...
jboss - http://download.jboss.org/jbosstools/updates/JBossTools-3.0.3.GA
下选择freemarker
type Exception report
message File "/axis2-web/listSingleService.jsp" not found
description The server encountered an internal error that prevented it from fulfilling this request.
exception
javax.servlet.ServletException: File "/axis2-web/listSingleService.jsp& ...
axis2的maven配置:
<axis-version>1.6.2</axis-version>
<dependency>
<groupId>org.apache.axis2</groupId>
<artifactId>axis2-adb</artifactId>
<version>${axis-version}</version>
</dependency>
<dependency>
<groupId> ...
Web Service是实现SOA(Service-Oriented Architecture)面向服务架构的技术,而Axis2是实现Web Service的一种技术框架(架构)。
先去apache官网上下载axis2-1.6.2-bin和axis2-1.6.2-war
下载地址:http://axis.apache.org/axis2/java/core/download.cgi
配置AXIS2的环境变量
将axis2-1.6.2-bin.zip解压
在环境变量里面配置AXIS2_HOME指向你的axis路径就行了。
解压axis2-1.6.2-war并将解压出来的axis2.war解 ...
java.lang.IllegalStateException: Cannot get a text value from a numeric formula cell序号=====
at org.apache.poi.xssf.usermodel.XSSFCell.typeMismatch(XSSFCell.java:845)
at org.apache.poi.xssf.usermodel.XSSFCell.checkFormulaCachedValueType(XSSFCell.java:302)
at org.apache.poi.xssf.usermodel.XSSFCel ...
Build path specifies execution environment J2SE-1.5. There are no JREs installed in the workspace that are strictly compatible with this environment.
新建maven2工程时,会自动将jre library指向为j2se-1.5,而不是我安装的jdk1.6,
在java build path 中奖j2se-1.5移除掉又选择jdk1.6后,右键项目maven -》update
project..又把我的jdk改成了1.5.
后来更改mave ...
配置例子:
<property name="cronExpression" value="0 0 16 * * ?" />
详解:
配置 不为空 值 可用符 号 Seconds YES 0-59 , - * /Minutes YES 0-59 , - * /HoursYES 0-23 , - * /Day of month YES 1-31 , - * ? / L WMonthYES 1-12 or JAN-DEC , - ...
spring配置Quartz定时器时出现的异常如下:
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'secondTimerTrigger' defined in ServletContext resource [/WEB-INF/spring/spring-schedule.xml]: Invocation of init method failed; nested exception is org.springframework.beans.PropertyBat ...
spring3.0整合Quartz时出错:
Caused by: java.lang.IncompatibleClassChangeError: class org.springframework.scheduling.quartz.CronTriggerBean has interface org.quartz.CronTrigger as super class
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClassCond(ClassLoader.java: ...