英文字典中文字典


英文字典中文字典51ZiDian.com



中文字典辞典   英文字典 a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z       







请输入英文单字,中文词皆可:

jetty    音标拼音: [dʒ'ɛti]
n. 突堤,防波堤,码头
a. 黑玉般的,墨黑的,漆黑的
vi. 伸出

突堤,防波堤,码头黑玉般的,墨黑的,漆黑的伸出

jetty
n 1: a protective structure of stone or concrete; extends from
shore into the water to prevent a beach from washing away
[synonym: {breakwater}, {groin}, {groyne}, {mole}, {bulwark},
{seawall}, {jetty}]

Jetty \Jet"ty\, a.
Made of jet, or like jet in color.
[1913 Webster]

The people . . . are of a jetty. --Sir T.
Browne.
[1913 Webster]


Jetty \Jet"ty\, n.; pl. {Jetties}. [F. jet['e]e a pier, a jetty,
a causeway. See {Jet} a shooting forth, and cf. {Jutty}.]
[1913 Webster]
1. (Arch.) A part of a building that jets or projects beyond
the rest, and overhangs the wall below.
[1913 Webster]

2. A wharf or pier extending from the shore.
[1913 Webster]

3. (Hydraul. Engin.) A structure of wood or stone extended
into the sea to influence the current or tide, or to
protect a harbor; a mole; as, the Eads system of jetties
at the mouth of the Mississippi River.
[1913 Webster]

{Jetty head} (Naut.), a projecting part at the end of a
wharf; the front of a wharf whose side forms one of the
cheeks of a dock.
[1913 Webster]


Jetty \Jet"ty\, v. i.
To jut out; to project. [Obs.] --Florio.
[1913 Webster]

97 Moby Thesaurus words for "jetty":
abutment, anchorage, anchorage ground, arc-boutant, arch dam,
backstop, bamboo curtain, bank, bar, barrage, barrier, basin, beam,
bear-trap dam, beaver dam, berth, black, boom, breakwater,
breastwork, brick wall, buffer, bulkhead, bulwark, buttress,
buttress pier, buttressing, cofferdam, dam, defense, dike, ditch,
dock, dockage, dockyard, dry dock, earthwork, ebon, ebony,
embankment, fence, flying buttress, gate, gravity dam, groin,
hanging buttress, harbor, harborage, haven, hydraulic-fill dam,
inky, iron curtain, jam, jet, jutty, landing, landing place,
landing stage, leaping weir, levee, logjam, marina, milldam, moat,
mole, moorings, mound, parapet, pier, pier buttress, pitch-black,
pitch-dark, port, portcullis, protected anchorage, quay, rampart,
raven, retaining wall, road, roadblock, roads, roadstead,
rock-fill dam, sable, seaport, seawall, shipyard, shoulder,
shutter dam, slip, stone wall, wall, weir, wharf, wicket dam,
work


请选择你想看的字典辞典:
单词字典翻译
jetty查看 jetty 在百度字典中的解释百度英翻中〔查看〕
jetty查看 jetty 在Google字典中的解释Google英翻中〔查看〕
jetty查看 jetty 在Yahoo字典中的解释Yahoo英翻中〔查看〕





安装中文字典英文字典查询工具!


中文字典英文字典工具:
选择颜色:
输入中英文单字

































































英文字典中文字典相关资料:


  • Whats the difference between Jetty and Netty? - Stack Overflow
    What is the main difference between Jetty and Netty? Netty is part of Jboss, but is it the default web server container? Does Netty support Servlets 3 0?
  • How do I serve https and http for Jetty from one port?
    Jetty uses two completely different connectors to bind to the secure and unsecure ports In fact, every web server I've encountered binds the two protocols to two completely separate ports One thing I would suggest for usability's sake is to use default ports, which completely hides the port from the user
  • Configure SSL on Jetty - Stack Overflow
    Edit {jetty} start ini and uncomment the line #etc jetty-ssl xml (just remove the #) Start jetty: java -jar start jar Now contact your server at: https: localhost:8443 Done! Note that this answer is a quick way to enable SSL with jetty To make it secure for production, you have to read some more on the subject
  • java - How to enable logging in jetty? - Stack Overflow
    (Jetty, and its logging layer was created in 1995) This is what Jetty logging does (and is documented at the documentation site) with regards to setup and configuration
  • How to migrate from embedded Jetty 10 to jetty 12 ee8?
    The solution is a mix For all what interacted with the Server instance like the InetAccessHandler I need to use the instances from jetty-server jar (without ee8 in the package) The ServletContextHandler come from the jetty-ee9-servlet jar All handler that are added to the ServletContextHandler like the ErrorHandler must then come from the jetty-ee8-nested jar If you do this all in the same
  • Murrells Inlet South Jetty - First Timer | Pier and Surf Forum
    I have been doing quite a bit of reading about fishing the Murrells inlet jetty and have a few questions for some of you that have fished them before I mainly surf fish and occasionally will do a little pier fishing Based on what I have read, to get to the south jetty, I can pay the $5 fee to
  • What is minimum Jetty version compatible with Java 17?
    2 tl;dr Jetty 12 is the only version maintained free-of-cost Jetty 12 can directly run your Jetty 9 web app, without modification Jetty 12 runs on Java 17 and later Jetty 12 Read the fine manual To quote: What Version Do I Use? Jetty 12 is currently the community-supported version of Jetty 👉🏽 So Jetty 12 is the only version to use
  • Jetty: HTTP ERROR: 503 Service Unavailable - Stack Overflow
    I run it by eclipse jetty plugin I didn't have the JDK lib in my eclipse, that's why the message keep showing that I need the full JDK installed, that's the main reason I installed two versions of jetty plugin, wich is jetty7 and jetty8 I think they conflict with each other or something, so I removed the jetty7, and it works!
  • java - Change Jetty default port - Stack Overflow
    Jetty default port is 8080, but I want to change to default port to some other port (9999) I read a few tutorials and they said almost all of configuration information is by default maintained i
  • How to configure Jetty in spring-boot (easily?) - Stack Overflow
    Spring Boot provides following Jetty specific configuration through property file:- server: jetty: connection-idle-timeout: # Time that the connection can be idle before it is closed max-http-form-post-size: # Maximum size of the form content in any HTTP post request e g 200000B accesslog: enabled: # Enable access log e g true append: # Enable append to log e g true custom-format: # Custom





中文字典-英文字典  2005-2009