- 浏览: 152668 次
- 性别:
- 来自: 上海
文章分类
最新评论
-
xfei6868:
<div class="quote_title ...
maven jetty7 插件设置 -
fengyie007:
<div class="quote_title ...
maven jetty7 插件设置 -
xfei6868:
请问你有没有结合 web.xml 配置 和 spring结合 ...
maven jetty7 插件设置 -
nianzhi:
tomcat7.0之后这样配置就不行了。根本没有作用。
tomcat地址栏传中文 -
nianzhi:
...
tomcat地址栏传中文
jetty-maven-plugin设置:
<plugin> <groupId>org.mortbay.jetty</groupId> <artifactId>jetty-maven-plugin</artifactId> <version>7.1.5.v20100705</version> <configuration> <webDefaultXml>webdefault.xml</webDefaultXml> <scanIntervalSeconds>0</scanIntervalSeconds> <webAppSourceDirectory>src/main/webapp</webAppSourceDirectory> <webAppConfig> <contextPath>/test</contextPath> <!-- <tempDirectory>${project.build.directory}/</tempDirectory> --> <jettyEnvXml>${basedir}/jetty-env.xml</jettyEnvXml> </webAppConfig> <scanTargetPatterns> <scanTargetPattern> <directory>src/main/webapp/WEB-INF</directory> <excludes> <exclude>**/*.jsp</exclude> </excludes> <includes> <include>**/*.properties</include> <include>**/*.xml</include> </includes> </scanTargetPattern> </scanTargetPatterns> <connectors> <connector implementation="org.eclipse.jetty.server.nio.SelectChannelConnector"> <port>8080</port> <host>localhost</host> <maxIdleTime>60000</maxIdleTime> </connector> <!--<connector implementation="org.eclipse.jetty.server.ssl.SslSelectChannelConnector"> <port>8443</port> <keystore>src/test/resources/server.keystore</keystore> <keyPassword>123456</keyPassword> <password>123456</password> </connector> --></connectors> <stopKey>foo</stopKey> <stopPort>9999</stopPort> <systemProperties> <systemProperty> <name>org.eclipse.jetty.util.URI.charset</name> <value>GBK</value> </systemProperty> </systemProperties> </configuration> <executions> <execution> <id>start-jetty</id> <phase>pre-integration-test</phase> <goals> <goal>run</goal> </goals> <configuration> <scanIntervalSeconds>0</scanIntervalSeconds> <daemon>true</daemon> </configuration> </execution> <execution> <id>stop-jetty</id> <phase>post-integration-test</phase> <goals> <goal>stop</goal> </goals> </execution> </executions> </plugin>
web.xml如采用2.5规范需如下设置: 添加 metadata-complete="true" 属性,否则jetty会扫描代码中的注解.
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" version="2.5" metadata-complete="true">
DBCP数据源设置jetty-env.xml:
<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE Configure PUBLIC "-//Mort Bay Consulting//DTD Configure//EN" "http://jetty.mortbay.org/configure.dtd"> <Configure class="org.eclipse.jetty.webapp.WebAppContext"> <New id="dataSource" class="org.eclipse.jetty.plus.jndi.Resource"> <Arg>devDs</Arg> <Arg> <New class="org.apache.commons.dbcp.BasicDataSource"> <Set name="driverClassName">oracle.jdbc.driver.OracleDriver</Set> <Set name="url">jdbc:oracle:thin:@localhost:1521:dev</Set> <Set name="username">dev</Set> <Set name="password">dev</Set> </New> </Arg> </New> </Configure>
URL编码设置:
添加运行参数 -Dorg.eclipse.jetty.util.URI.charset=GBK
或设置 systemProperty.
评论
3 楼
xfei6868
2013-11-26
fengyie007 写道
xfei6868 写道
请问你有没有结合 web.xml 配置 和 spring结合使用过。
我的一直报错误:
我的一直报错误:
2013-11-26 00:20:18.673:WARN::Configuration problem at <resource-ref>| <res-ref-name>jdbc/oracle</res-ref-name>| <res-type>javax.sql.DataSource</res-type>| <res-auth>Container</res-auth>| </resource-ref> java.lang.IllegalStateException: Nothing to bind for name javax.sql.DataSource/default
你的jetty-env.xml中有配置jndi数据源么
问题找到了,在pom.xml中数据源文件的位置配置错了!
2 楼
fengyie007
2013-11-26
xfei6868 写道
请问你有没有结合 web.xml 配置 和 spring结合使用过。
我的一直报错误:
我的一直报错误:
2013-11-26 00:20:18.673:WARN::Configuration problem at <resource-ref>| <res-ref-name>jdbc/oracle</res-ref-name>| <res-type>javax.sql.DataSource</res-type>| <res-auth>Container</res-auth>| </resource-ref> java.lang.IllegalStateException: Nothing to bind for name javax.sql.DataSource/default
你的jetty-env.xml中有配置jndi数据源么
1 楼
xfei6868
2013-11-26
请问你有没有结合 web.xml 配置 和 spring结合使用过。
我的一直报错误:
我的一直报错误:
2013-11-26 00:20:18.673:WARN::Configuration problem at <resource-ref>| <res-ref-name>jdbc/oracle</res-ref-name>| <res-type>javax.sql.DataSource</res-type>| <res-auth>Container</res-auth>| </resource-ref> java.lang.IllegalStateException: Nothing to bind for name javax.sql.DataSource/default
发表评论
-
jrebel 5.0.0 破解
2012-06-17 16:06 2226下载地址: http://download.csdn.net ... -
jetty服务器java.sql.SQLException: Already closed处理
2012-04-19 17:24 2058在jetty的数据源配置中添加如下配置 <Set n ... -
mvn install
2011-08-05 15:51 0mvn install:install-file -Dgrou ... -
weblogic中使用commons-lang包报java.lang.NoSuchMethodError解决办法
2010-08-31 17:01 5247在weblogic中发布的应用使用了commo ... -
java RSA密钥生成
2010-07-23 14:12 4890在网上找了下RSA的密钥的创建,结果全是用java序列化Pub ... -
eclipse常用插件更新地址
2009-11-11 09:37 1786findbugs http://findbugs.cs.umd ... -
java class文件魔数与版本对应
2009-10-21 14:36 1955major minor Java platform vers ... -
maven配置文件
2009-10-18 23:43 1427完整的自定义目录结构的maven配置文件。 ... -
eclipse远程调试
2009-07-17 01:01 2273set JAVA_OPTS=-server -Xdebug - ... -
删除eclipse3.4中的P2更新管理器
2009-04-12 18:14 1768原文地址:Equinox p2 Removal ... -
jdk1.3中保存jpeg图片
2009-04-09 15:21 1276因为在jdk1.3中没有ImageIO类,只能使用下面的方法来 ... -
JSR大全
2009-04-01 13:32 20651 ,Real-time Specification for ... -
apache commons-lang-2.3 StringUtils.java 学习笔记
2009-04-01 13:17 0StringUtils中方法的操作对象是java.lang.S ... -
java问题收集
2009-01-15 11:54 996所有字节码都是用sun虚拟机编译的.以下内容都是在网上查阅,加 ... -
eclipse常用插件(Update sites)
2008-12-30 14:19 1597findbugs http://findbugs.cs.umd ... -
weblogic 9.2 发布EJB
2008-12-29 16:05 1582将EJB的jar包放到domain的autodeploy目录下 ... -
confluence2.x 破解
2008-12-26 16:06 1264首先去官方网站下载confluence-2.x的安装包。 然后 ... -
eclipse.ini内存设置各参数含义
2008-11-10 13:13 5341-vmargs -Xms128M -Xmx512M -XX:P ... -
Java性能优化技巧集锦
2008-09-07 03:51 840可供程序利用的资源(内存、CPU时间、网络带宽等)是有限的 ... -
jdbc性能优化
2008-09-07 03:35 1097jdbc程序的性能主要由两个因素决定,一是数据库本身的性质,另 ...
相关推荐
10. **插件管理**:在Maven的`pom.xml`文件中,可以控制Jetty插件的版本,确保与项目中其他依赖的一致性。 在实际使用中,开发者通常会在`pom.xml`文件中添加以下配置来启用Maven Jetty Plugin: ```xml ... ...
本文将详细讨论如何将Jetty与Maven进行集成,并介绍关键的`maven-jetty-plugin`插件及其不同版本。 1. Maven与Jetty集成的意义: Maven通过其强大的依赖管理功能,使得项目构建变得简单和规范。而Jetty作为轻量级...
对于Jetty集成,我们通常会用到Maven Jetty插件,它允许我们在开发过程中直接通过Maven命令启动Jetty服务器,而无需部署到正式的Servlet容器中。 ** Maven Jetty插件的配置 ** 在Maven的pom.xml文件中,我们需要...
1. **添加Jetty插件依赖**:首先,在项目的`pom.xml`文件中,我们需要添加Jetty Maven插件的依赖。这可以通过在`<build>`标签内添加`<plugins>`标签,并在其中声明Jetty插件的GAV(Group ID, Artifact ID, Version)...
通过以上步骤,可以有效地解决使用Maven Jetty插件时出现的CSS、JS等文件被锁定的问题。这一解决方案不仅有助于提高开发效率,还能确保开发过程中静态资源的实时更新,从而提升整体的开发体验。
Maven和Jetty是Java开发中两个...通过合理配置Maven的POM文件和使用Jetty插件,开发者可以更专注于代码编写,而不必担心环境配置的问题。这个组合对于小型到中型的Web项目尤其适用,能够提高开发效率并降低维护成本。
4. 配置Jetty插件:在POM.xml中添加Jetty插件,如下: ```xml <groupId>org.mortbay.jetty <artifactId>jetty-maven-plugin <version>9.4.43.v20210629 <contextPath>/your-context-path ``` ...
jetty 6 maven官方插件 ,在maven官网下载的
maven-jetty-jspc-plugin-6.1.25-sources.jar
通过在Maven的`pom.xml`文件中添加Jetty插件,开发者可以在开发过程中快速启动和调试Web应用,无需每次都打包和部署到完整的应用服务器。 首先,我们需要了解Maven的插件系统。Maven插件是Maven生命周期的一部分,...
在上述配置中,我们指定了Jetty插件的groupId、artifactId和version,以及一些基本的运行配置,如Web应用的上下文路径(contextPath)和停止服务器的键值对(stopKey和stopPort)。 接下来,为了启动Web工程,只需...
通过Maven的jetty插件,可以很容易地运行你的Web应用。在命令行中执行以下命令: ``` mvn jetty:run ``` 现在,你可以通过HTTP(http://localhost:8080/hello)和HTTPS(https://localhost:8443/hello)访问你的应用...
- **添加Jetty插件**: 在`pom.xml`文件中,添加Jetty插件依赖,例如: ```xml <groupId>org.mortbay.jetty <artifactId>maven-jetty-plugin <version>6.1.26 ``` - **运行Jetty**: 在Eclipse中,...
3. 配置Jetty插件的设置,如上下文路径、停止键和端口。 4. 使用Maven的`jetty:run`命令启动服务器。 通过这种方式,你可以轻松地在开发环境中运行和测试你的Java Web应用,无需复杂的部署流程。
maven-jetty6-plugin-1.0.jar
标题 "dwr+maven+jetty" 涉及到三个关键的开源技术:Direct Web Remoting (DWR),Maven,以及Jetty。这些工具在IT行业中常用于构建和部署Java Web应用程序。 1. Direct Web Remoting (DWR): DWR是一种JavaScript...