Skip to content

Instantly share code, notes, and snippets.

@lzhoucs
Last active December 21, 2015 13:09
Show Gist options
  • Save lzhoucs/009647d1aff04ab3ed38 to your computer and use it in GitHub Desktop.
Save lzhoucs/009647d1aff04ab3ed38 to your computer and use it in GitHub Desktop.
A very simple css to style code within <pre>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Code style</title>
<style>
pre {
padding: 5px;
border-style: solid;
border-width: 1px;
border-color: #CCCCCC;
background-color: #f3f5e9;
}
</style>
</head>
<body>
A piece of java code
<pre>
/*
* Copyright 2002-2006 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.dao;
/**
* Exception thrown on failure to aquire a lock during an update,
* for example during a "select for update" statement.
*
* @author Rod Johnson
*/
public class CannotAcquireLockException extends PessimisticLockingFailureException {
/**
* Constructor for CannotAcquireLockException.
* @param msg the detail message
*/
public CannotAcquireLockException(String msg) {
super(msg);
}
/**
* Constructor for CannotAcquireLockException.
* @param msg the detail message
* @param cause the root cause from the data access API in use
*/
public CannotAcquireLockException(String msg, Throwable cause) {
super(msg, cause);
}
}
</pre>
A piece of xml code
<pre>
&lt;bean id=&quot;clientConnector&quot; class=&quot;org.springframework.jmx.support.MBeanServerConnectionFactoryBean&quot;&gt;
&lt;property name=&quot;serviceUrl&quot; value=&quot;service:jmx:rmi://localhost:9875&quot;/&gt;
&lt;/bean&gt;
</pre>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment