大部分都是别人东西整理,做个记录 方便查看
<h2 id="web开发">web开发</h2>
<p>spring boot web开发非常的简单,其中包括常用的json输出、filters、property、log等</p>
<h3 id="json-接口开发">json 接口开发</h3>
<p>在以前的spring 开发的时候需要我们提供json接口的时候需要做那些配置呢</p>
<blockquote>
<ol>
<li>添加 jackjson 等相关jar包</li>
<li>配置spring controller扫描</li>
<li>对接的方法添加@ResponseBody</li>
</ol>
</blockquote>
<p>就这样我们会经常由于配置错误,导致406错误等等,spring boot如何做呢,只需要类添加 <code>@RestController</code> 即可,默认类中的方法都会以json的格式返回</p>
<pre class="java"><code>@RestController
public class HelloWorldController {
@RequestMapping("/getUser")
public User getUser() {
User user=new User();
user.setUserName("小明");
user.setPassWord("xxxx");
return user;
}
}</code></pre>
<p>如果我们需要使用页面开发只要使用<code>@Controller</code> ,下面会结合模板来说明</p>
<h3 id="自定义filter">自定义Filter</h3>
<p>我们常常在项目中会使用filters用于录调用日志、排除有XSS威胁的字符、执行权限验证等等。Spring Boot自动添加了OrderedCharacterEncodingFilter和HiddenHttpMethodFilter,并且我们可以自定义Filter。</p>
<p>两个步骤:</p>
<blockquote>
<ol>
<li>实现Filter接口,实现Filter方法</li>
<li>添加<code>@Configurationz</code> 注解,将自定义Filter加入过滤链</li>
</ol>
</blockquote>
<p>好吧,直接上代码</p>
<pre class="java"><code>@Configuration
public class WebConfiguration {
@Bean
public RemoteIpFilter remoteIpFilter() {
return new RemoteIpFilter();
}
@Bean
public FilterRegistrationBean testFilterRegistration() {
FilterRegistrationBean registration = new FilterRegistrationBean();
registration.setFilter(new MyFilter());
registration.addUrlPatterns("/*");
registration.addInitParameter("paramName", "paramValue");
registration.setName("MyFilter");
registration.setOrder(1);
return registration;
}
public class MyFilter implements Filter {
@Override
public void destroy() {
// TODO Auto-generated method stub
}
@Override
public void doFilter(ServletRequest srequest, ServletResponse sresponse, FilterChain filterChain)
throws IOException, ServletException {
// TODO Auto-generated method stub
HttpServletRequest request = (HttpServletRequest) srequest;
System.out.println("this is MyFilter,url :"+request.getRequestURI());
filterChain.doFilter(srequest, sresponse);
}
@Override
public void init(FilterConfig arg0) throws ServletException {
// TODO Auto-generated method stub
}
}
}</code></pre>
<h3 id="自定义property">自定义Property</h3>
<p>在web开发的过程中,我经常需要自定义一些配置文件,如何使用呢</p>
<h3 id="配置在application.properties中">配置在application.properties中</h3>
<pre class="xml"><code>com.neo.title=纯洁的微笑
com.neo.description=分享生活和技术</code></pre>
<p>自定义配置类</p>
<pre class="java"><code>@Component
public class NeoProperties {
@Value("{com.neo.description}")
private String description;
//省略getter settet方法
}
</code></pre>
<h3 id="log配置">log配置</h3>
<p>配置输出的地址和输出级别</p>
<pre class="properties"><code>logging.path=/user/local/log
logging.level.com.favorites=DEBUG
logging.level.org.springframework.web=INFO
logging.level.org.hibernate=ERROR</code></pre>
<p>path为本机的log地址,<code>logging.level</code> 后面可以根据包路径配置不同资源的log级别</p>
<h2 id="数据库操作">数据库操作</h2>
<p>在这里我重点讲述mysql、spring data jpa的使用,其中mysql 就不用说了大家很熟悉,jpa是利用Hibernate生成各种自动化的sql,如果只是简单的增删改查,基本上不用手写了,spring内部已经帮大家封装实现了。</p>
<p>下面简单介绍一下如何在spring boot中使用</p>
<h3 id="添加相jar包">1、添加相jar包</h3>
<pre class="xml"><code> <dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-jpa</artifactId>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency></code></pre>
<h3 id="添加配置文件">2、添加配置文件</h3>
<pre class="properties"><code>spring.datasource.url=jdbc:mysql://localhost:3306/test
spring.datasource.username=root
spring.datasource.password=root
spring.datasource.driver-class-name=com.mysql.jdbc.Driver
spring.jpa.properties.hibernate.hbm2ddl.auto=update
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect
spring.jpa.show-sql= true</code></pre>
<p>其实这个hibernate.hbm2ddl.auto参数的作用主要用于:自动创建|更新|验证数据库表结构,有四个值:</p>
<blockquote>
<ol>
<li>create: 每次加载hibernate时都会删除上一次的生成的表,然后根据你的model类再重新来生成新表,哪怕两次没有任何改变也要这样执行,这就是导致数据库表数据丢失的一个重要原因。</li>
<li>create-drop :每次加载hibernate时根据model类生成表,但是sessionFactory一关闭,表就自动删除。</li>
<li>update:最常用的属性,第一次加载hibernate时根据model类会自动建立起表的结构(前提是先建立好数据库),以后加载hibernate时根据 model类自动更新表结构,即使表结构改变了但表中的行仍然存在不会删除以前的行。要注意的是当部署到服务器后,表结构是不会被马上建立起来的,是要等 应用第一次运行起来后才会。</li>
<li>validate :每次加载hibernate时,验证创建数据库表结构,只会和数据库中的表进行比较,不会创建新表,但是会插入新值。</li>
</ol>
</blockquote>
<p><code>dialect</code> 主要是指定生成表名的存储引擎为InneoDB<br />
<code>show-sql</code> 是否打印出自动生产的SQL,方便调试的时候查看</p>
<h3 id="添加实体类和dao">3、添加实体类和Dao</h3>
<pre class="java"><code>@Entity
public class User implements Serializable {
private static final long serialVersionUID = 1L;
@Id
@GeneratedValue
private Long id;
@Column(nullable = false, unique = true)
private String userName;
@Column(nullable = false)
private String passWord;
@Column(nullable = false, unique = true)
private String email;
@Column(nullable = true, unique = true)
private String nickName;
@Column(nullable = false)
private String regTime;
//省略getter settet方法、构造方法
}</code></pre>
<p>dao只要继承JpaRepository类就可以,几乎可以不用写方法,还有一个特别有尿性的功能非常赞,就是可以根据方法名来自动的生产SQL,比如<code>findByUserName</code> 会自动生产一个以 <code>userName</code> 为参数的查询方法,比如 <code>findAlll</code> 自动会查询表里面的所有数据,比如自动分页等等。。</p>
<p><strong>Entity中不映射成列的字段得加@Transient 注解,不加注解也会映射成列</strong></p>
<pre class="java"><code>public interface UserRepository extends JpaRepository<User, Long> {
User findByUserName(String userName);
User findByUserNameOrEmail(String username, String email);</code></pre>
<h3 id="测试">4、测试</h3>
<pre class="java"><code>@RunWith(SpringJUnit4ClassRunner.class)
@SpringApplicationConfiguration(Application.class)
public class UserRepositoryTests {
@Autowired
private UserRepository userRepository;
@Test
public void test() throws Exception {
Date date = new Date();
DateFormat dateFormat = DateFormat.getDateTimeInstance(DateFormat.LONG, DateFormat.LONG);
String formattedDate = dateFormat.format(date);
userRepository.save(new User("aa1", "aa@126.com", "aa", "aa123456",formattedDate));
userRepository.save(new User("bb2", "bb@126.com", "bb", "bb123456",formattedDate));
userRepository.save(new User("cc3", "cc@126.com", "cc", "cc123456",formattedDate));
Assert.assertEquals(9, userRepository.findAll().size());
Assert.assertEquals("bb", userRepository.findByUserNameOrEmail("bb", "cc@126.com").getNickName());
userRepository.delete(userRepository.findByUserName("aa1"));
}
}</code></pre>
<p>当让 spring data jpa 还有很多功能,比如封装好的分页,可以自己定义SQL,主从分离等等,这里就不详细讲了</p>
网友评论